Mark pypy3.11 on windows-latest as optional #426
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
| # NB: this name is used in the status badge | |
| name: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 5 * * 6" # 5:00 UTC every Saturday | |
| jobs: | |
| build: | |
| name: Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.optional }} | |
| strategy: | |
| matrix: | |
| optional: [false] | |
| python-version: | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| include: | |
| - python-version: "pypy3.11" | |
| os: ubuntu-latest | |
| optional: false | |
| - python-version: "pypy3.11" | |
| os: windows-latest | |
| optional: true # fails during pip install with incomplete reads | |
| steps: | |
| - name: Git clone | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "${{ matrix.python-version }}" | |
| cache: pip | |
| cache-dependency-path: setup.py | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install -U pip | |
| python -m pip install -U setuptools wheel | |
| python -m pip install -U pytest coverage | |
| python -m pip install -e . | |
| - name: Run tests | |
| run: | | |
| coverage run -m pytest tests | |
| - name: Check test coverage | |
| run: | | |
| coverage report -m --fail-under=${{ (matrix.python-version == 'pypy3.10') && 99 || 100 }} | |
| coverage xml | |
| # pypy3.10 thinks utils.py has one uncovered branch (140 -> 133), which | |
| # I think is just pypy's optimizer being too smart for coverage.py. | |
| - name: Report to coveralls | |
| uses: coverallsapp/github-action@v2 | |
| continue-on-error: true # coveralls is unreliable | |
| with: | |
| file: coverage.xml | |
| lint: | |
| name: ${{ matrix.toxenv }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toxenv: | |
| - flake8 | |
| - mypy | |
| - isort | |
| - check-manifest | |
| - check-python-versions | |
| steps: | |
| - name: Git clone | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ env.default_python || '3.12' }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "${{ env.default_python || '3.12' }}" | |
| - name: Pip cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('tox.ini') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip-${{ matrix.toxenv }}- | |
| ${{ runner.os }}-pip- | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install -U pip | |
| python -m pip install -U setuptools wheel | |
| python -m pip install -U tox | |
| - name: Run ${{ matrix.toxenv }} | |
| run: | | |
| python -m tox -e ${{ matrix.toxenv }} |