You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -67,13 +67,13 @@ mock_gen:
67
67
# Unit tests with faster execution (nicer for development).
68
68
.PHONY: fast-test
69
69
fast-test:
70
-
go test -mod=vendor -race $(shell go list ./... | grep -v -e "/e2e$" -e "/e2e/.*")
70
+
go test -mod=vendor -race $(shell go list ./... | grep -v -e "/e2e$$" -e "/e2e/.*")
71
71
cd konnectivity-client && go test -race ./...
72
72
73
73
# Unit tests with fuller coverage, invoked by CI system.
74
74
.PHONY: test
75
75
test:
76
-
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
76
+
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
77
77
cd konnectivity-client && go test -race -covermode=atomic -coverprofile=client.out ./... && go tool cover -html=client.out -o=client.html
0 commit comments