2016-08-10 00:26:11 +00:00
|
|
|
TEST?=./...
|
|
|
|
|
|
|
|
default: test
|
|
|
|
|
|
|
|
# test runs the test suite and vets the code
|
|
|
|
test:
|
|
|
|
go list $(TEST) | xargs -n1 go test -timeout=60s -parallel=10 $(TESTARGS)
|
|
|
|
|
|
|
|
# testrace runs the race checker
|
|
|
|
testrace:
|
|
|
|
go list $(TEST) | xargs -n1 go test -race $(TESTARGS)
|
|
|
|
|
|
|
|
# updatedeps installs all the dependencies to run and build
|
|
|
|
updatedeps:
|
2020-03-26 19:27:34 +00:00
|
|
|
go mod download
|
2016-08-10 00:26:11 +00:00
|
|
|
|
|
|
|
.PHONY: test testrace updatedeps
|