ci: use PYTHONPATH instead of editable install

This commit is contained in:
pax 2026-04-10 00:06:35 -05:00
parent 80607835d1
commit a632f1b961

View File

@ -9,8 +9,6 @@ jobs:
with:
python-version: '3.11'
- name: Install test deps
run: |
pip install httpx[http2] Pillow pytest
pip install -e . --no-deps
run: pip install httpx[http2] Pillow pytest
- name: Run tests
run: pytest tests/ -v
run: PYTHONPATH=. pytest tests/ -v