chore: reduce parallelism for test-go-pg on macOS (#16116)

We're seeing test-go-pg flakes on macOS in CI. We've had the same
problem on Windows, and reducing test parallelism in
https://github.com/coder/coder/pull/16090 seemed to help. This PR makes
the same change on macOS.
This commit is contained in:
Hugo Dutka
2025-01-13 16:57:48 +01:00
committed by GitHub
parent 009069cd47
commit dd29997b9c
+2 -1
View File
@@ -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