2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 06:10:44 +00:00

9 lines
125 B
Makefile
Raw Normal View History

TEST?=./...
test:
go test $(TEST) $(TESTARGS) -timeout=3s -parallel=4
go vet $(TEST)
go test $(TEST) -race
.PHONY: test