Skip to content

deps(python): enable Python 3.13t support (#137) #1319

deps(python): enable Python 3.13t support (#137)

deps(python): enable Python 3.13t support (#137) #1319

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
paths:
- setup.py
- setup.cfg
- pyproject.toml
- MANIFEST.in
- CMakeLists.txt
- include/**
- src/**
- tests/**
- optree/**
- .github/workflows/tests.yml
# Allow to trigger the workflow manually
workflow_dispatch:
permissions:
contents: read
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env:
OPTREE_CXX_WERROR: "ON"
FULL_TEST_PYTHON_VERSIONS: "3.10;3.11"
jobs:
test:
name: Test for Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version:
["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
include:
- os: macos-13
python-version: "3.7"
exclude:
- os: macos-latest
python-version: "3.7" # Python 3.7 does not support macOS ARM64
fail-fast: false
timeout-minutes: 90
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
update-environment: true
allow-prereleases: true
- name: Upgrade pip
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Set `SETUPTOOLS_ENABLE_FEATURES`
if: ${{ matrix.python-version == '3.7' && runner.os == 'Windows' }}
run: |
Write-Output 'SETUPTOOLS_ENABLE_FEATURES=legacy-editable' | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
- name: Install test dependencies
shell: bash
run: |
if [[ ";${FULL_TEST_PYTHON_VERSIONS};" == *";${{ matrix.python-version }};"* ]]; then
python -m pip install -r tests/requirements.txt
fi
- name: Install OpTree
run: |
python -m pip install -vvv --editable '.[test]'
- name: Test with pytest
run: |
make test PYTESTOPTS="--exitfirst"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: runner.os == 'Linux'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./tests/coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false