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