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
7272
7373.PHONY : test
7474test : # # 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 ./...
7676
7777.PHONY : test-update-snaps
7878test-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 ./...
8080
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 ./...
8283
8384cover-html : test # # Generate and show coverage report in HTML format
8485 go tool cover -html coverage.txt
You can’t perform that action at this time.
0 commit comments