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:
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
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
4848
4949.PHONY : e2e-compose-standalone
5050e2e-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
You can’t perform that action at this time.
0 commit comments