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
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,10 @@ e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName
67
67
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
68
68
go test$(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
69
69
70
+
.PHONY: test-cucumber
71
+
test-cucumber:
72
+
go test$(TEST_FLAGS) -v -count=1 -parallel=1 ./e2e
73
+
70
74
.PHONY: build-and-e2e-compose
71
75
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