Added tag 0.4.0 for changeset d31f0b340fde #154
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: | |
branches: [ master ] | |
paths-ignore: | |
- 'LICENSE.*' | |
- 'README.*' | |
- '.github/ISSUE-TEMPLATE/**' | |
- 'docs/**' | |
- '.hgignore' | |
- '.gitignore' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'LICENSE.*' | |
- 'README.*' | |
- '.github/ISSUE-TEMPLATE/**' | |
- 'docs/**' | |
- '.hgignore' | |
- '.gitignore' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.13t', 'pypy-2.7', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11'] | |
exclude: | |
# macos-latest does not have Python 3.7 | |
- os: macos-latest | |
python-version: '3.7' | |
# nor does ubuntu-latest | |
- os: ubuntu-latest | |
python-version: '3.7' | |
# Failing, seemingly not through anything we're doing ... | |
- os: windows-latest | |
python-version: '3.13t' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Test with unittest | |
run: | | |
python tests/test_all.py | |
env: | |
PYTHONHASHSEED: 0 | |
SKIP_EXT_PACKAGE_DATA: 1 | |
- name: Test with coverage | |
run: | | |
pip install coverage | |
coverage run --branch tests/test_all.py | |
coverage xml | |
env: | |
PYTHONHASHSEED: 0 | |
SKIP_EXT_PACKAGE_DATA: 1 | |
- name: Upload coverage to Codecov | |
# Repeated failures of Codecov on macos-12 | |
# if: ${{ matrix.os != 'macos-12' } | |
uses: codecov/codecov-action@v4 | |
with: | |
flags: unittests | |
files: coverage.xml |