We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55ffb6d commit 4c2ed97Copy full SHA for 4c2ed97
Makefile
@@ -46,8 +46,8 @@ clean: check-go ## runs `go clean` and removes the bin/ dir
46
# cover: check-go static ## runs test suite with coverage profiling
47
# $(GOTEST) ./... -coverprofile=$(COVER_FILE)
48
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 ' ' ',')
+ PKGS=$$(go list ./... | grep -v "github.com/optimizely/agent/statik")
+ $(GOTEST) $${PKGS} -coverprofile=$(COVER_FILE) -coverpkg=$$(echo $${PKGS} | tr ' ' ',')
51
52
cover-html: cover ## generates test coverage html report
53
$(GOCMD) tool cover -html=$(COVER_FILE)
0 commit comments