Skip to content

Commit 9e979ff

Browse files
authored
Merge pull request #694 from justinsb/i_can_haz_verbose_logs
tests: print test names during tests
2 parents 417cae6 + 0220b58 commit 9e979ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fast-test:
7676
# Unit tests with fuller coverage, invoked by CI system.
7777
.PHONY: test
7878
test:
79-
go test -mod=vendor -race -covermode=atomic -coverprofile=konnectivity.out $(shell go list ./... | grep -v -e "/e2e$$" -e "/e2e/.*") && go tool cover -html=konnectivity.out -o=konnectivity.html
79+
go test -v -mod=vendor -race -covermode=atomic -coverprofile=konnectivity.out $(shell go list ./... | grep -v -e "/e2e$$" -e "/e2e/.*") && go tool cover -html=konnectivity.out -o=konnectivity.html
8080
cd konnectivity-client && go test -race -covermode=atomic -coverprofile=client.out ./... && go tool cover -html=client.out -o=client.html
8181

8282
.PHONY: test-integration

0 commit comments

Comments
 (0)