aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2017-08-19 17:53:31 +0100
committerGravatar GitHub <noreply@github.com> 2017-08-19 17:53:31 +0100
commit60c83fefac38ab453435a2c3d28948c518258661 (patch)
tree3c4f8a8b56e5a57c5aa10929927b0453f3de1276 /Makefile
parent87eb0d39a43c423d4aa265bcfb7a2b842a287a06 (diff)
downloadcoredns-60c83fefac38ab453435a2c3d28948c518258661.tar.gz
coredns-60c83fefac38ab453435a2c3d28948c518258661.tar.zst
coredns-60c83fefac38ab453435a2c3d28948c518258661.zip
travis: remove -bench and -race from coverage (#949)
Not needed and already done in the other test (bench is not looked at at all)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 68beb7011..6d72b4e0d 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,7 @@ ifeq ($(TEST_TYPE),middleware)
endif
ifeq ($(TEST_TYPE),coverage)
for d in `go list ./... | grep -v vendor`; do \
- go test -v -tags 'etcd k8s' -race -coverprofile=cover.out -covermode=atomic -bench=. $$d || exit 1; \
+ go test -v -tags 'etcd k8s' -coverprofile=cover.out -covermode=atomic $$d || exit 1; \
if [ -f cover.out ]; then \
cat cover.out >> coverage.txt; \
rm cover.out; \