From 654285a3d0eb8956cf3ff94c12a3cf2919971511 Mon Sep 17 00:00:00 2001 From: Hugo Dutka Date: Mon, 13 Jan 2025 15:17:55 +0000 Subject: [PATCH] reduce parallelism on test-go-pg on macos --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index df752d2aa41f0..82f2a7f9489b8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -453,7 +453,8 @@ jobs: DB=ci gotestsum --format standard-quiet -- -v -short -count=1 -parallel 4 -p 4 ./... else go run scripts/embedded-pg/main.go - DB=ci gotestsum --format standard-quiet -- -v -short -count=1 ./... + # Reduce test parallelism, like for Windows above. + DB=ci gotestsum --format standard-quiet -- -v -short -count=1 -parallel 4 -p 4 ./... fi - name: Upload test stats to Datadog