Skip to content

Commit 0220b58

Browse files
committed
tests: print test names during tests
By passing `-v`, it makes the output clearer.
1 parent a515c83 commit 0220b58

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)