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
+5-5
Original file line number
Diff line number
Diff line change
@@ -6,27 +6,27 @@ lint:
6
6
7
7
.PHONY: test
8
8
test:
9
-
go test -v -race -short ./...
9
+
go test -race -short ./...
10
10
11
11
.PHONY: test_cover
12
12
test_cover:
13
-
go list -f '{{if len .TestGoFiles}}"cd {{.Dir}} && go test -v -race -short -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
13
+
go list -f '{{if len .TestGoFiles}}"cd {{.Dir}} && go test -race -short -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
14
14
go run ./hack/coverage/coverage.go . unit.coverprofile
15
15
@find . -name \.coverprofile -type f -delete
16
16
17
17
.PHONY: test_integration
18
18
test_integration:
19
-
go test -v -race -run Integration ./...
19
+
go test -race -run Integration ./...
20
20
21
21
.PHONY: test_integration_cover
22
22
test_integration_cover:
23
-
go list -f '{{if len .TestGoFiles}}"cd {{.Dir}} && go test -v -race -run Integration -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
23
+
go list -f '{{if len .TestGoFiles}}"cd {{.Dir}} && go test -race -run Integration -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -L 1 sh -c
24
24
go run ./hack/coverage/coverage.go . integration.coverprofile
0 commit comments