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-2
Original file line number
Diff line number
Diff line change
@@ -75,11 +75,11 @@ install: binary
75
75
76
76
.PHONY: e2e-compose
77
77
e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName to run a single test
78
-
go test -v $(TEST_FLAGS) -count=1 ./pkg/e2e
78
+
go run gotest.tools/gotestsum@latest --format testname --junitfile "/tmp/report/report.xml" -- -v $(TEST_FLAGS) -count=1 ./pkg/e2e
79
79
80
80
.PHONY: e2e-compose-standalone
81
81
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
82
-
go test$(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
82
+
go run gotest.tools/gotestsum@latest --format testname --junitfile "/tmp/report/report.xml" --$(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
83
83
84
84
.PHONY: build-and-e2e-compose
85
85
build-and-e2e-compose: build e2e-compose ## Compile the compose cli-plugin and run end to end local tests in plugin mode. Set E2E_TEST=TestName to run a single test
0 commit comments