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
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,12 @@ e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2
51
51
docker-compose version
52
52
go test$(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
53
53
54
+
.PHONY: build-and-e2e-compose
55
+
build-and-e2e-compose: compose-plugin 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
56
+
57
+
.PHONY: build-and-e2e-compose-standalone
58
+
build-and-e2e-compose-standalone: compose-plugin e2e-compose-standalone ## Compile the compose cli-plugin and run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
e2e: e2e-compose e2e-compose-standalone ## Run end to end local tests in both modes. Set E2E_TEST=TestName to run a single test
62
68
69
+
.PHONY: build-and-e2e
70
+
build-and-e2e: compose-plugin e2e-compose e2e-compose-standalone ## Compile the compose cli-plugin and run end to end local tests in both modes. Set E2E_TEST=TestName to run a single test
71
+
63
72
.PHONY: cross
64
73
cross: ## Compile the CLI for linux, darwin and windows
0 commit comments