fix: use python -m for ruff and pytest in CI

This commit is contained in:
Celes Renata
2026-04-11 12:56:40 -07:00
parent 7524aa5f2c
commit 5a2827d5ee
+2 -2
View File
@@ -25,10 +25,10 @@ jobs:
run: pip install -r requirements.txt
- name: Lint
run: ruff check services/
run: python -m ruff check services/
- name: Test
run: pytest tests/ -x --tb=short -q || true
run: python -m pytest tests/ -x --tb=short -q || true
build-services:
needs: lint-and-test