Merge pull request #3384 from cfromknecht/run-submodules

Makefile: ensure submodules are linted, covered, and tested
This commit is contained in:
Olaoluwa Osuntokun 2019-08-09 13:02:21 -07:00 committed by GitHub
commit b2cb15184e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -30,8 +30,8 @@ GOINSTALL := GO111MODULE=on go install -v
GOTEST := GO111MODULE=on go test -v
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*")
GOLIST := go list $(PKG)/... | grep -v '/vendor/'
GOLISTCOVER := $(shell go list -f '{{.ImportPath}}' ./... | sed -e 's/^$(ESCPKG)/./')
GOLIST := go list -deps $(PKG)/... | grep '$(PKG)'| grep -v '/vendor/'
GOLISTCOVER := $(shell go list -deps -f '{{.ImportPath}}' ./... | grep '$(PKG)' | sed -e 's/^$(ESCPKG)/./')
RM := rm -f
CP := cp

View File

@ -1,7 +1,7 @@
DEV_TAGS = dev
LOG_TAGS =
TEST_FLAGS =
COVER_PKG = $$(go list ./... | grep -v lnrpc)
COVER_PKG = $$(go list -deps ./... | grep '$(PKG)' | grep -v lnrpc)
# If specific package is being unit tested, construct the full name of the
# subpackage.