Fixing tests on newer versions of Sphinx. Stop getting deprecation wa… #23
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: tests | |
| on: [push, pull_request] | |
| env: | |
| PYTHONHASHSEED: 1042466059 | |
| ZOPE_INTERFACE_STRICT_IRO: 1 | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: 'setup.py' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install -U pip setuptools wheel | |
| python -m pip install -U coverage zope.testrunner | |
| python -m pip install -U -e ".[test]" | |
| - name: Test | |
| run: | | |
| coverage run -m zope.testrunner --test-path=src | |
| - name: Lint | |
| if: matrix.python-version == '3.12' | |
| run: | | |
| python -m pip install -U pylint | |
| pylint src | |
| - name: Submit to Coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| parallel: true | |
| coveralls_finish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls Finished | |
| uses: coverallsapp/github-action@v2 |