tests: Try to increase minimum version of pytest-rerunfailures #131
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: ci | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
env: | |
LANG: en_US.utf-8 | |
LC_ALL: en_US.utf-8 | |
PYTHONIOENCODING: UTF-8 | |
PYTHON_VERSIONS: "" | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch all tags | |
run: git fetch --depth=1 --tags | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install uv | |
run: pip install uv | |
- name: Install dependencies | |
run: make setup | |
- name: Check if the documentation builds correctly | |
run: make check-docs | |
- name: Check the code quality | |
run: make check-quality | |
- name: Check if the code is correctly typed | |
run: make check-types | |
- name: Check for breaking changes in the API | |
run: make check-api | |
tests: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
resolution: | |
- highest | |
- lowest-direct | |
exclude: | |
- os: macos-latest | |
resolution: lowest-direct | |
- os: windows-latest | |
resolution: lowest-direct | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.python-version == '3.13' || matrix.os == 'windows-latest' }} | |
steps: | |
- name: Install aria2 on Ubuntu | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: sudo apt-get install aria2 | |
- name: Install aria2 on Windows | |
if: ${{ matrix.os == 'windows-latest' }} | |
uses: crazy-max/ghaction-chocolatey@v1 | |
with: | |
args: install aria2 | |
- name: Install aria2 on MacOS | |
if: ${{ matrix.os == 'macos-latest' }} | |
run: brew install aria2 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install uv | |
run: pip install uv | |
- name: Install dependencies | |
env: | |
UV_RESOLUTION: ${{ matrix.resolution }} | |
run: make setup | |
- name: Run the test suite | |
run: make test |