fix: resolve CI workflow - use python -m prefix for pytest and ruff
Some checks failed
CI / test (push) Failing after 9s

This commit is contained in:
2026-02-04 02:39:22 +00:00
parent 1076e8e41c
commit 030c38a100

View File

@@ -25,9 +25,9 @@ jobs:
- name: Run tests
run: |
pytest -v
python -m pytest -v
- name: Run linting
run: |
pip install ruff
ruff check cmdparse/ tests/
python -m ruff check cmdparse/ tests/