From 0220b580eec7053b05c161e569c1972bc5da443e Mon Sep 17 00:00:00 2001 From: justinsb Date: Fri, 24 Jan 2025 15:58:55 -0500 Subject: [PATCH] tests: print test names during tests By passing `-v`, it makes the output clearer. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1d967aa39..6b12ebd3f 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ fast-test: # Unit tests with fuller coverage, invoked by CI system. .PHONY: test test: - 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 + 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 cd konnectivity-client && go test -race -covermode=atomic -coverprofile=client.out ./... && go tool cover -html=client.out -o=client.html .PHONY: test-integration