Fix CI: use python -m pytest explicitly
Some checks failed
CI / test (push) Failing after 14s

This commit is contained in:
2026-02-04 18:09:06 +00:00
parent 4a8be31b24
commit b86f66a574

View File

@@ -20,7 +20,7 @@ jobs:
cd app && pip install -e ".[dev]"
- name: Run tests
run: |
cd app && pytest tests/ -v --cov=src --cov-report=term-missing
cd app && python -m pytest tests/ -v --cov=src --cov-report=term-missing
- name: Check linting
run: |
pip install ruff