1
0
Fork 0
mirror of https://github.com/Luzifer/vault-patch.git synced 2024-11-14 04:02:43 +00:00
vault-patch/vendor/github.com/hashicorp/go-rootcerts/Makefile

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