prevent parallel execution of tests in different pkgs (suspect this is what causes our deadlock to show up only in CI test env)
This commit is contained in:
parent
ec421c810b
commit
de6fb0e155
6
Makefile
6
Makefile
@ -56,7 +56,11 @@ ios:
|
||||
|
||||
.PHONY: statedifftest
|
||||
statedifftest: | $(GOOSE)
|
||||
MODE=statediff go test ./statediff/... -v
|
||||
MODE=statediff go test -p 1 ./statediff/... -v
|
||||
|
||||
.PHONY: statediff_filewriting_test
|
||||
statediff_filetest: | $(GOOSE)
|
||||
MODE=statediff STATEDIFF_DB=file go test -p 1 ./statediff/... -v
|
||||
|
||||
test: all
|
||||
$(GORUN) build/ci.go test
|
||||
|
Loading…
Reference in New Issue
Block a user