From 2c5c2b50c0a1bdbfc563cab3cdbdf2d61803baeb Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Mon, 12 May 2025 15:18:59 -0700 Subject: [PATCH] update timeout for unit test from 20m to 15m --- pipelines/shared-tasks/run-unit-tests/task.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/shared-tasks/run-unit-tests/task.sh b/pipelines/shared-tasks/run-unit-tests/task.sh index 5705e9f66..b7731afd8 100755 --- a/pipelines/shared-tasks/run-unit-tests/task.sh +++ b/pipelines/shared-tasks/run-unit-tests/task.sh @@ -14,4 +14,4 @@ export GOCACHE="$PWD/cache/gocache" export GOMODCACHE="$PWD/cache/gomodcache" cd pinniped -go test -short -timeout 20m -race -coverprofile "${COVERAGE_OUTPUT}" -covermode atomic ./... +go test -short -timeout 15m -race -coverprofile "${COVERAGE_OUTPUT}" -covermode atomic ./...