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)