Fix CI: set PYTHONPATH for pytest module discovery

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Alexa Amundson
2026-02-20 16:06:49 -06:00
parent 96c3d04dc6
commit 70321a69d3

View File

@@ -23,4 +23,4 @@ jobs:
- name: Validate syntax - name: Validate syntax
run: find . -name "*.py" -type f -exec python3 -m py_compile {} \; run: find . -name "*.py" -type f -exec python3 -m py_compile {} \;
- name: Test - name: Test
run: pytest tests/ -v run: PYTHONPATH=. pytest tests/ -v