Skip to content

Commit

Permalink
Force tests to run sequentially
Browse files Browse the repository at this point in the history
Our integration tests (within packages) require the use of docker
resources that are difficult to share. For now it's easier to simply
force the tests to run sequentially.
  • Loading branch information
max-b committed Apr 2, 2024
1 parent 40e4e1e commit e463389
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ jobs:
go-version: 1.21

- name: Test
run: go test -v ./...
# Force tests to run sequentially to avoid docker resource contention
run: go test -v -p 1 ./...

0 comments on commit e463389

Please sign in to comment.