Revert "Makefile: run coverage tests with -tags=debug"

This reverts commit 8bb4337cac.
This commit is contained in:
Olaoluwa Osuntokun
2018-08-09 22:33:12 -07:00
parent f4849b051d
commit c520f89229

View File

@@ -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