Skip to content

Commit 4c2ed97

Browse files
committed
update coveralls to exclude statik
1 parent 55ffb6d commit 4c2ed97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ clean: check-go ## runs `go clean` and removes the bin/ dir
4646
# cover: check-go static ## runs test suite with coverage profiling
4747
# $(GOTEST) ./... -coverprofile=$(COVER_FILE)
4848
cover: check-go static ## runs test suite with coverage profiling
49-
PKGS=$$(go list ./... | grep -v "github.com/optimizely/agent/statik")
50-
$(GOTEST) $${PKGS} -coverprofile=$(COVER_FILE) -coverpkg=$$(echo $${PKGS} | tr ' ' ',')
49+
PKGS=$$(go list ./... | grep -v "github.com/optimizely/agent/statik")
50+
$(GOTEST) $${PKGS} -coverprofile=$(COVER_FILE) -coverpkg=$$(echo $${PKGS} | tr ' ' ',')
5151

5252
cover-html: cover ## generates test coverage html report
5353
$(GOCMD) tool cover -html=$(COVER_FILE)

0 commit comments

Comments
 (0)