Fix CI workflow: cd to app/ directory for pip install and tests
Some checks failed
CI / test (push) Failing after 14s

This commit is contained in:
2026-02-04 18:00:27 +00:00
parent e0b5b78999
commit 53dfd70fc8

View File

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