From 2deed977e10763d7468e5822a4782b74fc779e45 Mon Sep 17 00:00:00 2001 From: jayanandagit Date: Thu, 5 Nov 2020 22:09:53 -0500 Subject: [PATCH] Release/v0.33.0 (#386) * release v0.33.0 * bump up functional tests timeout --- CHANGELOG.md | 4 ++-- pipelines/pipeline.yml | 2 +- scripts/test_functional.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74de8b5ec..b250b6c6a 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -## vNext -- Upgrade aws-nuke to v1.3.0 +## v0.33.0 +- Upgrade aws-nuke to v1.3.0 ## v0.32.0 - Upgrade go to 1.15 diff --git a/pipelines/pipeline.yml b/pipelines/pipeline.yml index ba1a20de3..a9e38b1ae 100644 --- a/pipelines/pipeline.yml +++ b/pipelines/pipeline.yml @@ -243,7 +243,7 @@ stages: set -euxo pipefail mkdir -p junit-report # Run functional tests - go test -v ./tests/... -test.timeout 40m 2>&1 | tee >(go-junit-report > junit-report/functional.xml) + go test -v ./tests/... -test.timeout 50m 2>&1 | tee >(go-junit-report > junit-report/functional.xml) displayName: "Functional Tests" # Publish junit test results (for unit and functional tests) diff --git a/scripts/test_functional.sh b/scripts/test_functional.sh index df99db2cf..2b36ab7de 100755 --- a/scripts/test_functional.sh +++ b/scripts/test_functional.sh @@ -4,5 +4,5 @@ set -euxo pipefail mkdir -p junit-report # Run functional tests -go test -v ./tests/... -test.timeout 40m 2>&1 | tee >(go-junit-report > junit-report/functional.xml) +go test -v ./tests/... -test.timeout 50m 2>&1 | tee >(go-junit-report > junit-report/functional.xml)