Skip to content

Commit

Permalink
fix: use parallelism of 1 in go test
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Oct 19, 2021
1 parent 1dc7497 commit 8736334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ migrations-render-replace: .bin/ory

.PHONY: migratest-refresh
migratest-refresh:
cd persistence/sql/migratest; UPDATE_SNAPSHOTS=true go test -tags sqlite -short .
cd persistence/sql/migratest; UPDATE_SNAPSHOTS=true go test -p 1 -tags sqlite -short .

.PHONY: test-update-snapshots
test-update-snapshots:
UPDATE_SNAPSHOTS=true go test -tags sqlite -short ./...
UPDATE_SNAPSHOTS=true go test -p 4 -tags sqlite -short ./...

0 comments on commit 8736334

Please sign in to comment.