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

This reverts commit 8bb4337caca91aa7e9c96f1eb98a9e9582f42003.
This commit is contained in:
Olaoluwa Osuntokun 2018-08-09 22:33:12 -07:00
parent f4849b051d
commit c520f89229
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

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