mirror of
https://github.com/docker/compose.git
synced 2025-07-21 20:54:32 +02:00
Merge pull request #9493 from ulyssessouza/fix-local-e2e-compose-standalone
Fix local run of `make e2e-compose-standalone`
This commit is contained in:
commit
22194f6ef7
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -139,4 +139,7 @@ jobs:
|
|||||||
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
|
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
|
||||||
|
|
||||||
- name: E2E Test in standalone mode
|
- name: E2E Test in standalone mode
|
||||||
run: make e2e-compose-standalone
|
run: |
|
||||||
|
rm -f /usr/local/bin/docker-compose
|
||||||
|
cp bin/docker-compose /usr/local/bin
|
||||||
|
make e2e-compose-standalone
|
||||||
|
2
Makefile
2
Makefile
@ -48,8 +48,6 @@ e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName
|
|||||||
|
|
||||||
.PHONY: e2e-compose-standalone
|
.PHONY: e2e-compose-standalone
|
||||||
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
|
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
|
||||||
rm -f /usr/local/bin/docker-compose
|
|
||||||
cp bin/docker-compose /usr/local/bin
|
|
||||||
docker-compose version
|
docker-compose version
|
||||||
go test $(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
|
go test $(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user