File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -333,13 +333,13 @@ jobs:
333333 ./scripts/ci_run.sh ${{ matrix.project_type }} 4
334334 - name : MyPy
335335 working-directory : ${{ env.WORKING_DIR }}
336- run : .venv/bin/mypy .
336+ run : .venv/bin/python -m mypy .
337337 - name : ruff check
338338 working-directory : ${{ env.WORKING_DIR }}
339- run : .venv/bin/ruff check .
339+ run : .venv/bin/python -m ruff check .
340340 - name : ruff format
341341 working-directory : ${{ env.WORKING_DIR }}
342- run : .venv/bin/ruff format --check .
342+ run : .venv/bin/python -m ruff format --check .
343343 setuptools-test :
344344 strategy :
345345 fail-fast : false
@@ -366,8 +366,8 @@ jobs:
366366 working-directory : ${{ env.WORKING_DIR }}
367367 run : |
368368 git add .
369- .venv/bin/pre-commit run --all-files
369+ .venv/bin/python -m pre_commit run --all-files
370370 - name : Test with pytest
371371 working-directory : ${{ env.WORKING_DIR }}
372372 if : matrix.project_type == 'application'
373- run : .venv/bin/pytest
373+ run : .venv/bin/python -m pytest
You can’t perform that action at this time.
0 commit comments