From 6089d5cde47b61792b1bba29ded4959bc547f83d Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Mon, 12 May 2025 15:07:45 -0700 Subject: [PATCH] update timeout for unit test from default 10m to 20m --- pipelines/shared-tasks/run-unit-tests/task.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipelines/shared-tasks/run-unit-tests/task.sh b/pipelines/shared-tasks/run-unit-tests/task.sh index 6364b8ae2..5705e9f66 100755 --- a/pipelines/shared-tasks/run-unit-tests/task.sh +++ b/pipelines/shared-tasks/run-unit-tests/task.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved. +# Copyright 2020-2025 the Pinniped contributors. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 set -euo pipefail @@ -14,4 +14,4 @@ export GOCACHE="$PWD/cache/gocache" export GOMODCACHE="$PWD/cache/gomodcache" cd pinniped -go test -short -race -coverprofile "${COVERAGE_OUTPUT}" -covermode atomic ./... +go test -short -timeout 20m -race -coverprofile "${COVERAGE_OUTPUT}" -covermode atomic ./...