From 6fad7ef3c2bae8387e0b62e11c6b98de74a3b2ea Mon Sep 17 00:00:00 2001 From: Joshua Casey Date: Wed, 18 Dec 2024 08:56:21 -0600 Subject: [PATCH] Temporarily run unit tests without -race due to #2160 --- pipelines/shared-tasks/run-unit-tests/task.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pipelines/shared-tasks/run-unit-tests/task.sh b/pipelines/shared-tasks/run-unit-tests/task.sh index 6364b8ae2..1b1d70a51 100755 --- a/pipelines/shared-tasks/run-unit-tests/task.sh +++ b/pipelines/shared-tasks/run-unit-tests/task.sh @@ -14,4 +14,5 @@ export GOCACHE="$PWD/cache/gocache" export GOMODCACHE="$PWD/cache/gomodcache" cd pinniped -go test -short -race -coverprofile "${COVERAGE_OUTPUT}" -covermode atomic ./... +# Temporarily remove "-race" from the next line due to https://github.com/vmware-tanzu/pinniped/pull/2160 +go test -short -coverprofile "${COVERAGE_OUTPUT}" -covermode atomic ./...