Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- "3.14"
- "3.13"
- "3.12"
pyqt-dependency:
- "PyQt6"
- "PySide6"
qt-extra:
- "PyQt"
- "PySide"

steps:
- uses: "actions/checkout@v3"
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
# Project dependencies + test dependencies from pyproject.toml
# NOTE: Also builds viscm. How do we avoid this?
pip install --group dev . ${{ matrix.pyqt-dependency }}
pip install --group dev .[${{ matrix.qt-extra }}]

# pytest-qt CI dependencies: https://pytest-qt.readthedocs.io/en/latest/troubleshooting.html#github-actions
sudo apt update
Expand Down
Loading