Bugfixes mostly #278
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Automated Testing | |
| on: | |
| pull_request: | |
| branches: | |
| - beta | |
| - major | |
| push: | |
| branches: | |
| - major | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-15, macos-latest] | |
| py-version: ["3.10", "3.11", "3.12"] | |
| env: | |
| QT_QPA_PLATFORM: 'offscreen' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.py-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.py-version }} | |
| - name: Install linux dependencies | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| uses: tlambert03/setup-qt-libs@v1 | |
| - name: Update pip & install testing pkgs | |
| run: | | |
| python -VV | |
| python -m pip install --upgrade pip setuptools wheel | |
| - name: Install package and test deps | |
| run: | | |
| pip install .[testing] | |
| - name: Test with pytest | |
| run: pytest -q --no-cov -o log_cli=false |