File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -139,4 +139,7 @@ jobs:
139
139
if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
140
140
141
141
- 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
Original file line number Diff line number Diff line change @@ -48,8 +48,6 @@ e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName
48
48
49
49
.PHONY : e2e-compose-standalone
50
50
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
53
51
docker-compose version
54
52
go test $(TEST_FLAGS ) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
55
53
You can’t perform that action at this time.
0 commit comments