Skip to content

Commit

Permalink
Enable the golang race detector for Porch tests (#3668)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortent committed Nov 29, 2022
1 parent 9045f1c commit a641385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion porch/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ tidy:

.PHONY: test
test:
@for f in $(MODULES); do (cd $$f; echo "Testing $$f"; E2E=1 go test --count=1 ./...) || exit 1; done
@for f in $(MODULES); do (cd $$f; echo "Testing $$f"; E2E=1 go test -race --count=1 ./...) || exit 1; done

.PHONY: vet
vet:
Expand Down

0 comments on commit a641385

Please sign in to comment.