Fix CI workflow paths: use backend/ instead of src/

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-13 18:45:00 +00:00
parent 37b9e20969
commit 446251c546

View File

@@ -36,15 +36,15 @@ jobs:
run: poetry run validate-workflows
- name: Static analysis
run: poetry run python -m compileall src
run: poetry run python -m compileall backend
- name: Lint (errors only)
run: |
python -m pip install pylint
poetry run pylint --errors-only src/autometabuilder
poetry run pylint --errors-only backend/autometabuilder
- name: Unit tests
run: PYTHONPATH=src poetry run pytest tests/test_main.py tests/test_metadata.py tests/test_roadmap.py
run: PYTHONPATH=backend poetry run pytest backend/tests/test_main.py backend/tests/test_metadata.py backend/tests/test_roadmap.py
- name: UI tests
run: PYTHONPATH=src poetry run pytest tests/ui
run: PYTHONPATH=backend poetry run pytest backend/tests/ui