Increase integration test parallelism

This commit is contained in:
Pieter Noordhuis 2024-12-09 13:08:44 +01:00
parent 227a13556b
commit f410a75c1a
No known key found for this signature in database
GPG Key ID: 12ACCCC104CF2930
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ vendor:
@go mod vendor
integration:
gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./internal/..." -- -run "TestAcc.*" -parallel 4 -timeout=2h
gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./internal/..." -- -run "TestAcc.*" -p 2 -parallel 8 -timeout=2h
.PHONY: fmt lint lintfix test testonly coverage build snapshot vendor integration