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:
i-norden 2021-12-20 13:43:30 -06:00
parent ec421c810b
commit de6fb0e155

View File

@ -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