Fix test suite under Sphinx 7.4+ #944
Workflow file for this run
This file contains 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: | |
paths: | |
- ".github/workflows/unit_tests.yml" | |
- "breathe/**" | |
- "tests/**" | |
pull_request: | |
paths: | |
- ".github/workflows/unit_tests.yml" | |
- "breathe/**" | |
- "tests/**" | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: "1" | |
PYTHONDEVMODE: "1" # -X dev | |
PYTHONWARNDEFAULTENCODING: "1" # -X warn_default_encoding | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
sphinx-version: | |
- '6.2' | |
- '7.2' # Ubuntu 24.04 | |
- '7.4' # Ubuntu 24.10 | |
- '8.0' | |
- '8.1' # Ubuntu 25.04 | |
exclude: | |
- python-version: '3.9' | |
sphinx-version: '8.0' | |
- python-version: '3.9' | |
sphinx-version: '8.1' | |
- python-version: '3.12' | |
sphinx-version: '6.2' | |
- python-version: '3.13' | |
sphinx-version: '6.2' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install .[test] | |
- name: Install Sphinx ${{ matrix.sphinx-version }} | |
run: python -m pip install --upgrade "Sphinx~=${{ matrix.sphinx-version }}.0" | |
- name: Test with pytest | |
run: python -m pytest -vv | |
env: | |
PYTHONWARNINGS: "error" # treat all warnings as errors | |
test-latest-sphinx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install .[test] | |
- name: Install Sphinx master | |
run: python -m pip install "Sphinx @ git+https://github.com/sphinx-doc/sphinx" | |
- name: Test with pytest | |
run: python -m pytest -vv |