update timeout for unit test from default 10m to 20m

This commit is contained in:
Ryan Richard
2025-05-12 15:07:45 -07:00
parent 26f4b69fb1
commit 6089d5cde4

View File

@@ -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 ./...