From 8424c69934bcee12990e9f05087aece4640dcf20 Mon Sep 17 00:00:00 2001 From: Abhishek Pandey Date: Wed, 16 Aug 2023 20:29:08 +0530 Subject: [PATCH] Increase nightly test timeout from 15m to 1h (#4042) We are seeing timeouts with 15m. Given these are nightly tests, it's safe to increase timeouts to 1hr. --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [x] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/nightly_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly_test.yml b/.github/workflows/nightly_test.yml index 29b69ad20..f6338a4c1 100644 --- a/.github/workflows/nightly_test.yml +++ b/.github/workflows/nightly_test.yml @@ -103,7 +103,7 @@ jobs: -v \ -failfast \ -p 1 \ - -timeout 15m \ + -timeout 1h \ ./... 2>&1 | tee ./testlog/gotest-nightly.log | gotestfmt -hide successful-tests ##########################################################################################################################################