From 9fae7c06afa2cf21532358dff9655d30534638bd Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Thu, 26 Apr 2018 00:05:32 -0500 Subject: [PATCH] Use -race flag with go test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee355ad..6635f1e 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ usage: @echo "" test: - go test -cover ./pkg/... + go test -race -cover ./pkg/... test-all: @./script/test_all.sh