We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d1ee8 commit 2c28f69Copy full SHA for 2c28f69
2 files changed
Makefile
@@ -82,7 +82,7 @@ unit-test:
82
$(GO_TEST) $(shell go list ./... | grep -vE '/e2e')
83
84
coverage-bin:
85
- $(GO_TEST) -coverpkg="./..." -c -ldflags=$(LDFLAGS) -tags testrunmain -o _build/$(BIN_NAME).cov
+ $(GO_TEST) -coverpkg="./..." -c -ldflags=$(LDFLAGS) -tags testrunmain -o _build/$(BIN_NAME).cov ./cmd/docker-app
86
go install ./vendor/github.com/wadey/gocovmerge/
87
88
coverage: coverage-bin
main_test.go cmd/docker-app/main_test.gomain_test.go renamed to cmd/docker-app/main_test.go
@@ -5,5 +5,5 @@ package main
5
import "testing"
6
7
func TestRunMain(t *testing.T) {
8
- main()
+ main()
9
}
0 commit comments