File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -72,13 +72,14 @@ staticcheck: ## Run staticcheck linter
72
72
73
73
.PHONY : test
74
74
test : # # Run GoLang tests
75
- go test -tags=aws,helmunit -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...
75
+ go test -tags=aws,helmunit -shuffle=on ./...
76
76
77
77
.PHONY : test-update-snaps
78
78
test-update-snaps :
79
- UPDATE_SNAPS=true go test -tags=aws,helmunit -shuffle=on -race ./...
79
+ UPDATE_SNAPS=true go test -tags=aws,helmunit -shuffle=on ./...
80
80
81
- cover : test # # Generate coverage report
81
+ cover : # # Generate coverage report
82
+ go test -tags=aws,helmunit -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...
82
83
83
84
cover-html : test # # Generate and show coverage report in HTML format
84
85
go tool cover -html coverage.txt
You can’t perform that action at this time.
0 commit comments