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 6e02241 commit d891113Copy full SHA for d891113
Makefile
@@ -9,10 +9,9 @@ LDFLAGS := -ldflags="-s -w -X \"github.com/$(OWNER)/$(NAME)/cmd.Version=$(VERSIO
9
.PHONY: test test_ci tidy install buildprep build buildmac buildwin
10
11
test: test_prereq
12
- go test ./... -v -mod=readonly -coverprofile=.coverage/out -race > .coverage/test.out ; \
+ go test ./... -v -mod=readonly -coverprofile=.coverage/out -race | tee .coverage/test.out ; \
13
cat .coverage/test.out | go-junit-report > .coverage/report-junit.xml ; \
14
- gocov convert .coverage/out | gocov-xml > .coverage/report-cobertura.xml ; \
15
- cat .coverage/test.out
+ gocov convert .coverage/out | gocov-xml > .coverage/report-cobertura.xml
16
17
test_ci:
18
go test ./... -mod=readonly
0 commit comments