diff --git a/Makefile b/Makefile index a1f30d3ab..810018b17 100644 --- a/Makefile +++ b/Makefile @@ -44,10 +44,10 @@ GO_BUILD = env CGO_ENABLED=0 GOOS=$(PLATFORM) GOARCH=$(ARCH) \ $(GO) build $(GO_FLAGS) -ldflags '-s -w $(BUILD_LDFLAGS) $(VERSION_FLAGS) ' # TEST_FLAGS - extra "go test" flags to use -GO_INT_TEST = $(GO) test -p 1 -race -coverpkg $(shell go list ./... | egrep -v "fakes|test|cmd|parser" | paste -sd "," -) \ +GO_INT_TEST = $(GO) test -p 1 -race -coverpkg $(shell go list ./... | egrep -v "fakes|test|smgen|parser" | paste -sd "," -) \ ./test/... $(TEST_FLAGS) -coverprofile=$(INT_TEST_PROFILE) -GO_UNIT_TEST = $(GO) test -p 1 -race -coverpkg $(shell go list ./... | egrep -v "fakes|test|cmd|parser" | paste -sd "," -) \ +GO_UNIT_TEST = $(GO) test -p 1 -race -coverpkg $(shell go list ./... | egrep -v "fakes|test|smgen|parser" | paste -sd "," -) \ $(shell go list ./... | egrep -v "test") -coverprofile=$(UNIT_TEST_PROFILE) COUNTERFEITER ?= "v6.0.2"