switch to tomli for toml fallback #552
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: | |
branches-ignore: | |
- dependabot/** | |
- pre-commit-ci-update-config | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
env: | |
DEFAULT_PYTHON: '3.12' | |
jobs: | |
tests: | |
name: Run ${{ matrix.mark}} tests (${{ matrix.python-version }} on ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# run all the tests on latest Python version | |
- os: ubuntu-latest | |
mark: all | |
python-version: '3.13' | |
# run only minimal set of tests on other Python versions because it takes too much time | |
- os: ubuntu-22.04 | |
mark: important | |
python-version: '3.7' | |
- os: ubuntu-latest | |
mark: important | |
python-version: 'pypy-3.7' | |
- os: ubuntu-latest | |
mark: important | |
python-version: 'pypy-3.10' | |
# for MacOS and Windows always run only minimal tests | |
- os: macos-latest | |
mark: important | |
python-version: '3.13' | |
- os: windows-latest | |
mark: important | |
python-version: '3.13' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }} | |
${{ runner.os }}-python-${{ matrix.python-version }}-tests- | |
${{ runner.os }}-python | |
${{ runner.os }}- | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install dependencies | |
run: pip install -I -r requirements.txt -r requirements-test.txt | |
- name: Build package | |
run: | | |
git version | |
git tag -l --sort=-creatordate --merged | |
python setup.py --version | |
python setup.py bdist_wheel sdist | |
- name: Run tests | |
run: | | |
mkdir reports/ | |
pip install -e . --no-build-isolation | |
coverage run -m pytest -m ${{ matrix.mark }} | |
- name: Upload coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.mark }} | |
path: reports/.coverage* | |
# https://github.com/actions/upload-artifact/issues/602 | |
include-hidden-files: true | |
all_done: | |
name: Tests done | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Cache pip | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-tests-${{ hashFiles('requirements*.txt') }} | |
restore-keys: | | |
${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-tests-${{ hashFiles('requirements*.txt') }} | |
${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-tests- | |
${{ runner.os }}-python | |
${{ runner.os }}- | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install dependencies | |
run: pip install -I -r requirements.txt -r requirements-test.txt | |
- name: Download all coverage reports | |
uses: actions/download-artifact@v4 | |
with: | |
path: reports | |
- name: Move coverage reports to the root folder | |
run: find reports -type f -exec mv '{}' reports \; | |
- name: Combine coverage | |
run: | | |
coverage combine | |
coverage xml -o reports/coverage.xml -i | |
- name: Check coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./reports | |
fail_ci_if_error: true | |
- name: All done | |
run: echo 1 |