File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 2828 env :
2929 EMAIL : ${{ secrets.EMAIL }}
3030 PASSWORD : ${{ secrets.PASSWORD }}
31- run : |
32- source .venv/bin/activate
33- xvfb-run pytest -m devRun --base-url ${{ vars.BASE_URL }}
31+ run : xvfb-run .venv/bin/python -m pytest -m devRun --base-url ${{ vars.BASE_URL }}
3432 - name : Auto-assign reviewers
3533 uses : kentaro-m/auto-assign-action@v2.0.0
3634 if : success()
Original file line number Diff line number Diff line change 5353 uv pip sync uv.lock
5454 - name : Run Tests
5555 run : |
56- source .venv/bin/activate
57- xvfb-run pytest ${{ github.event.inputs.pytest_command || '-m "not devRun"' }} \
56+ xvfb-run .venv/bin/python -m pytest ${{ github.event.inputs.pytest_command || '-m "not devRun"' }} \
5857 --base-url ${{ vars.BASE_URL }} \
5958 --splits ${{ github.event.inputs.parallelism || 2 }} \
6059 --group ${{ matrix.group }}
You can’t perform that action at this time.
0 commit comments