File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1+ Variable resolution
Original file line number Diff line number Diff line change @@ -367,8 +367,8 @@ runs:
367367 PYTEST_RUN : ${{ steps.pytest-run-command.outputs.PYTEST_RUN }}
368368 ACTIVATE_VENV : ${{ steps.virtual-environment-activation-command.outputs.ACTIVATE_VENV }}
369369 run : |
370- $ACTIVATE_VENV
371- $ PYTEST_RUN $ PYTEST_MARKERS $ PYTEST_EXTRA_ARGS $ PYTEST_POST_ARGS
370+ ${ ACTIVATE_VENV}
371+ eval "${ PYTEST_RUN} ${ PYTEST_MARKERS} ${ PYTEST_EXTRA_ARGS} ${ PYTEST_POST_ARGS}"
372372
373373 - name : " Executing test suite using xvfb"
374374 if : inputs.requires-xvfb == 'true'
@@ -380,5 +380,5 @@ runs:
380380 PYTEST_RUN : ${{ steps.pytest-run-command.outputs.PYTEST_RUN }}
381381 ACTIVATE_VENV : ${{ steps.virtual-environment-activation-command.outputs.ACTIVATE_VENV }}
382382 run : |
383- $ACTIVATE_VENV
384- xvfb-run ${PYTEST_RUN} ${PYTEST_MARKERS} ${PYTEST_EXTRA_ARGS} ${PYTEST_POST_ARGS}
383+ ${ ACTIVATE_VENV}
384+ eval " xvfb-run ${PYTEST_RUN} ${PYTEST_MARKERS} ${PYTEST_EXTRA_ARGS} ${PYTEST_POST_ARGS}"
You can’t perform that action at this time.
0 commit comments