From 0290e408784124554876d37b41af2c0186b68caa Mon Sep 17 00:00:00 2001 From: Keepers Date: Tue, 28 Mar 2023 16:48:53 -0600 Subject: [PATCH] increase ci test timeout from 10 to 15 minutes (#2971) #### Does this PR need a docs update or release note? - [x] :no_entry: No #### Type of change - [x] :robot: Supportability/Tests #### Test Plan - [x] :zap: Unit test - [x] :green_heart: E2E --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6144cdd8e..f38c43faf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -218,6 +218,7 @@ jobs: -v \ -failfast \ -p 1 \ + -timeout 15m \ ./... 2>&1 | tee ./testlog/gotest.log | gotestfmt -hide successful-tests # Upload the original go test output as an artifact for later review. @@ -269,6 +270,7 @@ jobs: -v \ -failfast \ -p 1 \ + -timeout 15m \ ./... 2>&1 | tee ./testlog/gotest-unit.log | gotestfmt -hide successful-tests # Upload the original go test output as an artifact for later review. @@ -354,6 +356,7 @@ jobs: go test \ -json \ -v \ + -timeout 15m \ ./... 2>&1 | tee ./testlog/gotest.log | gotestfmt -hide successful-tests # Upload the original go test log as an artifact for later review.