Skip to content

Commit 5b5a57e

Browse files
committed
Fix command
1 parent 02502cb commit 5b5a57e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)