Skip to content

Commit 22194f6

Browse files
authored
Merge pull request docker#9493 from ulyssessouza/fix-local-e2e-compose-standalone
Fix local run of `make e2e-compose-standalone`
2 parents b961d49 + e51fd0a commit 22194f6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,7 @@ jobs:
139139
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
140140

141141
- name: E2E Test in standalone mode
142-
run: make e2e-compose-standalone
142+
run: |
143+
rm -f /usr/local/bin/docker-compose
144+
cp bin/docker-compose /usr/local/bin
145+
make e2e-compose-standalone

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName
4848

4949
.PHONY: e2e-compose-standalone
5050
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
51-
rm -f /usr/local/bin/docker-compose
52-
cp bin/docker-compose /usr/local/bin
5351
docker-compose version
5452
go test $(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
5553

0 commit comments

Comments
 (0)