File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -368,6 +368,10 @@ e2e-image: docker-pull-prerequisites $(TOOLS_BIN_DIR)/start.sh $(TOOLS_BIN_DIR)/
368
368
369
369
.PHONY : test
370
370
test : # # Run tests
371
+ source ./scripts/fetch_ext_bins.sh; fetch_tools; setup_envs; go test ./...
372
+
373
+ .PHONY : test-verbose
374
+ test-verbose : # # Run tests with verbose settings.
371
375
source ./scripts/fetch_ext_bins.sh; fetch_tools; setup_envs; go test -v ./...
372
376
373
377
.PHONY : test-e2e # # Run e2e tests using clusterctl
@@ -388,7 +392,7 @@ test-conformance: generate-test-flavors $(GINKGO) $(KIND) $(SSM_PLUGIN) $(KUSTOM
388
392
389
393
.PHONY : test-cover
390
394
test-cover : # # Run tests with code coverage and code generate reports
391
- source ./scripts/fetch_ext_bins.sh; fetch_tools; setup_envs; go test -v - coverprofile=coverage.out ./... $(TEST_ARGS )
395
+ source ./scripts/fetch_ext_bins.sh; fetch_tools; setup_envs; go test -coverprofile=coverage.out ./... $(TEST_ARGS )
392
396
go tool cover -func=coverage.out -o coverage.txt
393
397
go tool cover -html=coverage.out -o coverage.html
394
398
Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ cd "${REPO_ROOT}" &&
26
26
source ./scripts/fetch_ext_bins.sh &&
27
27
fetch_tools &&
28
28
setup_envs &&
29
- make lint test
29
+ make lint test-verbose
You can’t perform that action at this time.
0 commit comments