make: pass dev tag to go-acc

Previously we were excluding non-dev test files from our coverage
report, which included interface_test.go as well as the bitcoindnotify
and btcdnotify dev tests.
This commit is contained in:
Conner Fromknecht 2020-12-10 22:08:44 -08:00
parent ea8d02eb68
commit c2c520e431
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

View File

@ -4,7 +4,7 @@ LOG_TAGS =
TEST_FLAGS =
ITEST_FLAGS =
EXEC_SUFFIX =
COVER_PKG = $$(go list -deps ./... | grep '$(PKG)' | grep -v lnrpc)
COVER_PKG = $$(go list -deps -tags="$(DEV_TAGS)" ./... | grep '$(PKG)' | grep -v lnrpc)
NUM_ITEST_TRANCHES = 4
ITEST_PARALLELISM = $(NUM_ITEST_TRANCHES)