From c520f8922944dd8d3a6bd8478077dc40ea119526 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 9 Aug 2018 22:33:12 -0700 Subject: [PATCH] Revert "Makefile: run coverage tests with -tags=debug" This reverts commit 8bb4337caca91aa7e9c96f1eb98a9e9582f42003. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a25599a8..7ab24e3d 100644 --- a/Makefile +++ b/Makefile @@ -40,10 +40,8 @@ GOLIST := go list $(PKG)/... | grep -v '/vendor/' GOLISTCOVER := $(shell go list -f '{{.ImportPath}}' ./... | sed -e 's/^$(ESCPKG)/./') GOLISTLINT := $(shell go list -f '{{.Dir}}' ./... | grep -v 'lnrpc') -include make/testing_flags.mk - COVER = for dir in $(GOLISTCOVER); do \ - $(GOTEST) -tags="$(TEST_TAGS)" \ + $(GOTEST) $(TEST_FLAGS) \ -covermode=count \ -coverprofile=$$dir/profile.tmp $$dir; \ \ @@ -82,6 +80,7 @@ define print echo $(GREEN)$1$(NC) endef +include make/testing_flags.mk default: scratch