ci: install only test deps (skip PySide6/mpv build)

This commit is contained in:
pax 2026-04-10 00:04:28 -05:00
parent 8c1266ab0d
commit 80607835d1

View File

@ -8,11 +8,9 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install system deps
- name: Install test deps
run: |
sudo apt-get update
sudo apt-get install -y libmpv-dev libegl1 libxkbcommon0
- name: Install Python deps
run: pip install -e . pytest
pip install httpx[http2] Pillow pytest
pip install -e . --no-deps
- name: Run tests
run: QT_QPA_PLATFORM=offscreen pytest tests/ -v
run: pytest tests/ -v