diff --git a/.make/Makefile.go b/.make/Makefile.go index 3cc31f7..3381e12 100644 --- a/.make/Makefile.go +++ b/.make/Makefile.go @@ -62,12 +62,17 @@ test-short: ## Runs vet, lint and tests (excludes integration tests) test-travis: ## Runs all tests via Travis (also exports coverage) @$(MAKE) lint - @echo "running tests..." + @echo "running tests (travis)..." @go test ./... -race -coverprofile=coverage.txt -covermode=atomic +test-travis-no-race: ## Runs all tests (no race) (also exports coverage) + @$(MAKE) lint + @echo "running tests (no race)..." + @go test ./... -coverprofile=coverage.txt -covermode=atomic + test-travis-short: ## Runs unit tests via Travis (also exports coverage) @$(MAKE) lint - @echo "running tests (short)..." + @echo "running tests (short & travis)..." @go test ./... -test.short -race -coverprofile=coverage.txt -covermode=atomic uninstall: ## Uninstall the application (and remove files)