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 ac20937 commit a6c780bCopy full SHA for a6c780b
Makefile
@@ -26,7 +26,7 @@ go-lint: .golangci-lint-install
26
27
.PHONY: go-test
28
go-test:
29
- go test -count=1 -covermode=atomic -coverprofile=cover.out.tmp -race ./internal/...
+ go test -count=1 -covermode=atomic -coverprofile=cover.out.tmp -race ./...
30
cat cover.out.tmp | grep -v ".minimock.go" > cover.out
31
@coverage=$$(go tool cover -func cover.out | grep total | awk '{print substr($$3, 1, length($$3)-1)}'); echo "$$coverage"
32
0 commit comments