aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4393260..e99cc0a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ GOPATH?= $(HOME)/go
.PHONY: test
test: lint ## Run tests and create coverage report
- go test -race -short -coverprofile=coverage.txt -covermode=atomic ./...
+ go test -short -coverprofile=coverage.txt -covermode=atomic ./...
go tool cover -html=coverage.txt -o coverage.html
.PHONY: lint