From 630fb327d93695b8ab057f5c7a038f62396cfe1c Mon Sep 17 00:00:00 2001 From: Jaya Nanda Date: Fri, 9 Oct 2020 13:57:26 -0400 Subject: [PATCH] bump up functional tests timeout --- pipelines/pipeline.yml | 2 +- scripts/test_functional.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pipelines/pipeline.yml b/pipelines/pipeline.yml index 23591218b..ba1a20de3 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 30m 2>&1 | tee >(go-junit-report > junit-report/functional.xml) + go test -v ./tests/... -test.timeout 40m 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 2bcb264b8..df99db2cf 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 30m 2>&1 | tee >(go-junit-report > junit-report/functional.xml) +go test -v ./tests/... -test.timeout 40m 2>&1 | tee >(go-junit-report > junit-report/functional.xml)