Skip to content

Commit 719c2b5

Browse files
committed
test against pytest 8 and Python 3.13
1 parent 3f35ea3 commit 719c2b5

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,25 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
34+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
3535
os: [ubuntu-latest, windows-latest]
3636
include:
3737
- python: "3.7"
38-
tox_env: "py37-pytest7"
38+
tox_env: "py37-pytest8"
3939
- python: "3.8"
40-
tox_env: "py38-pytest7"
40+
tox_env: "py38-pytest8"
4141
- python: "3.9"
42-
tox_env: "py39-pytest7"
42+
tox_env: "py39-pytest8"
4343
- python: "3.10"
44-
tox_env: "py310-pytest7"
44+
tox_env: "py310-pytest8"
4545
- python: "3.11"
46-
tox_env: "py311-pytest7"
46+
tox_env: "py311-pytest8"
4747
- python: "3.12"
48-
tox_env: "py312-pytest7"
48+
tox_env: "py312-pytest8"
49+
- python: "3.13"
50+
tox_env: "py313-pytest8"
4951
- python: "pypy3.10"
50-
tox_env: "pypy3-pytest7"
52+
tox_env: "pypy3-pytest8"
5153

5254
steps:
5355
- uses: actions/checkout@v4

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
minversion = 4.0
33
isolated_build = true
44
envlist =
5-
py{37,38,39,310,311,312,py3}-pytest7
6-
py37-pytest{4,5,6}
5+
py{37,38,39,310,311,312,313,314,py3}-pytest8
6+
py37-pytest{4,5,6,7}
77
flake8
88

99

@@ -15,7 +15,8 @@ deps =
1515
pytest4: pytest~=4.6
1616
pytest5: pytest~=5.4
1717
pytest6: pytest~=6.2
18-
pytest7: pytest>=7
18+
pytest7: pytest~=7.4
19+
pytest8: pytest>=8
1920

2021

2122
[testenv:flake8]

0 commit comments

Comments
 (0)