Skip to content

Commit

Permalink
Fix coverage CI and add 3.13 test runner (#456)
Browse files Browse the repository at this point in the history
* Fix coverage CI

* Add Python 3.13 test runner
  • Loading branch information
farmio authored Sep 3, 2024
1 parent 0edaa07 commit 45b2a97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -36,6 +36,7 @@ jobs:
with:
name: coverage-${{ matrix.python-version }}
path: .coverage
include-hidden-files: true

coverage:
name: Process test coverage
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311, py312, ruff, typing, lint, pylint
envlist = py39, py310, py311, py312, py313, ruff, typing, lint, pylint
skip_missing_interpreters = True

[gh-actions]
Expand All @@ -8,6 +8,7 @@ python =
3.10: py310
3.11: py310, ruff, typing, lint, pylint
3.12: py312
3.13: py313

[testenv]
setenv =
Expand Down

0 comments on commit 45b2a97

Please sign in to comment.