Skip to content

Commit

Permalink
Test with Python 3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed May 17, 2024
1 parent accf9d2 commit 4e7f7e3
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,40 @@ jobs:
test:
name: Pytest (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.python-version == '3.13' }}
continue-on-error: ${{ matrix.python-version == '3.13' || matrix.python-version == '3.14' }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.10"
include:
- python-version: "3.12"
os: "windows-latest"
- python-version: "3.12"
os: "macos-latest"
- python-version: "3.14-dev"
os: "ubuntu-latest"
nightly: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
if: ${{ !matrix.nightly }}
with:
cache: pip
python-version: ${{ matrix.python-version }}
allow-prereleases: true
architecture: x64
- uses: deadsnakes/action@v3.1.0
if: ${{ matrix.nightly }}
with:
python-version: ${{ matrix.python-version}}
- run: pip install .
- run: python -Im unittest -v

0 comments on commit 4e7f7e3

Please sign in to comment.