Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Fix Sphinx issues

Fix Sphinx issues #464

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
name: 🧪 Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.9', 'pypy3.10']
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
pip install "tox>=4.24,<5" "tox-gh-actions>=3.2,<4"
- name: Run unit tests with tox
run: tox
tests-old:
name: 🧪 Tests (older Python versions)
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.7', '3.8']
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
pip install "tox>=3.28,<5" "tox-gh-actions>=3.2,<4"
- name: Run unit tests with tox
run: tox
Morty Proxy This is a proxified and sanitized view of the page, visit original site.