| # test runs the test suite and vets the code. |
| @echo "==> Running tests..." |
| | xargs -n1 go test -timeout=60s -parallel=10 ${TESTARGS} |
| # testrace runs the race checker |
| @echo "==> Running tests (race)..." |
| | xargs -n1 go test -timeout=60s -race ${TESTARGS} |
| # updatedeps installs all the dependencies needed to run and build. |
| @sh -c "'${CURDIR}/scripts/deps.sh' '${NAME}'" |
| # generate runs `go generate` to build the dynamically generated source files. |
| @echo "==> Generating..." |
| @find . -type f -name '.DS_Store' -delete |
| .PHONY: default test testrace updatedeps generate |