Skip to content

Commit

Permalink
Test on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jul 23, 2023
1 parent e68c9fe commit 9bb59f4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
cache-dependency-path: ".github/workflows/tests.yml"
- name: setup
Expand All @@ -33,13 +34,9 @@ jobs:
run: |
blurb test
- name: pytest
# TODO Pending https://github.com/pytest-dev/pyfakefs/issues/770
if: matrix.python-version != '3.12-dev'
run: |
python -I -m pytest --cov blurb
- name: Upload coverage
# TODO Pending https://github.com/pytest-dev/pyfakefs/issues/770
if: matrix.python-version != '3.12-dev'
uses: codecov/codecov-action@v3
with:
flags: ${{ matrix.python-version }}
Expand Down

0 comments on commit 9bb59f4

Please sign in to comment.