From 3350a91fa0bcda51358c6ebbef771f52bba0b400 Mon Sep 17 00:00:00 2001 From: John Murret Date: Fri, 27 Oct 2023 17:33:54 -0600 Subject: [PATCH] increasing unit tests timeout from 10m to 30m (#19423) --- .github/workflows/reusable-unit-split.yml | 3 ++- .github/workflows/reusable-unit.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-unit-split.yml b/.github/workflows/reusable-unit-split.yml index 29c341998dd6..3d959d168bed 100644 --- a/.github/workflows/reusable-unit-split.yml +++ b/.github/workflows/reusable-unit-split.yml @@ -130,7 +130,8 @@ jobs: --packages="$PACKAGE_NAMES" \ --junitfile ${{env.TEST_RESULTS}}/gotestsum-report.xml -- \ -tags="${{env.GOTAGS}}" \ - -cover -coverprofile=coverage.txt + -cover -coverprofile=coverage.txt \ + -timeout=30m # NOTE: ENT specific step as we store secrets in Vault. - name: Authenticate to Vault diff --git a/.github/workflows/reusable-unit.yml b/.github/workflows/reusable-unit.yml index 42943954475d..3b50bfa7e388 100644 --- a/.github/workflows/reusable-unit.yml +++ b/.github/workflows/reusable-unit.yml @@ -109,7 +109,8 @@ jobs: --junitfile ${{env.TEST_RESULTS}}/gotestsum-report.xml -- \ -tags="${{env.GOTAGS}}" \ ${GO_TEST_FLAGS-} \ - -cover -coverprofile=coverage.txt + -cover -coverprofile=coverage.txt \ + -timeout=30m # NOTE: ENT specific step as we store secrets in Vault. - name: Authenticate to Vault