From d9a983fbfe0a7b3d49856e59effdfe3948a31358 Mon Sep 17 00:00:00 2001 From: Jordan Krage Date: Mon, 8 Aug 2022 08:17:54 -0500 Subject: [PATCH] tools/bin: restore -p 3 to CI core tests (#7184) --- tools/bin/go_core_tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/go_core_tests b/tools/bin/go_core_tests index 026d37943d0..ec99ac1fc9a 100755 --- a/tools/bin/go_core_tests +++ b/tools/bin/go_core_tests @@ -5,7 +5,7 @@ set +e echo "Failed tests and panics: ---------------------" echo "" GO_LDFLAGS=$(bash tools/bin/ldflags) -go test -ldflags "$GO_LDFLAGS" -tags integration -coverprofile=coverage.txt -covermode=atomic ./... | tee ./output.txt | grep --line-buffered --line-number -e "\-\-\- FAIL" -e "FAIL\s" +go test -ldflags "$GO_LDFLAGS" -tags integration -p 3 -coverprofile=coverage.txt -covermode=atomic ./... | tee ./output.txt | grep --line-buffered --line-number -e "\-\-\- FAIL" -e "FAIL\s" EXITCODE=${PIPESTATUS[0]} echo "" echo "----------------------------------------------"