Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd29997

Browse files
authored
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 #16090 seemed to help. This PR makes the same change on macOS.
1 parent 009069c commit dd29997

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,8 @@ jobs:
453453
DB=ci gotestsum --format standard-quiet -- -v -short -count=1 -parallel 4 -p 4 ./...
454454
else
455455
go run scripts/embedded-pg/main.go
456-
DB=ci gotestsum --format standard-quiet -- -v -short -count=1 ./...
456+
# Reduce test parallelism, like for Windows above.
457+
DB=ci gotestsum --format standard-quiet -- -v -short -count=1 -parallel 4 -p 4 ./...
457458
fi
458459
459460
- name: Upload test stats to Datadog

0 commit comments

Comments
 (0)