Skip to content

Commit 15a34de

Browse files
authored
Merge pull request #533 from pytest-dev/py3.11
Add python 3.11 to the test matrix
2 parents 550e123 + 3c74f7d commit 15a34de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10"]
14+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
1515

1616
steps:
1717
- uses: actions/checkout@v2

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
isolated_build = True
44
distshare = {homedir}/.tox/distshare
55
envlist = ; python 3.10 is only supported by pytest >= 6.2.5:
6-
py310-pytest{62,70,71,latest}-coverage,
6+
py{310,311}-pytest{62,70,71,latest}-coverage,
77
; the rest of pytest runs can use an older python:
88
py39-pytest{50,51,52,53,54,60,61}-coverage,
99
py{37,38,39}-pytestlatest-coverage,
@@ -43,3 +43,4 @@ python =
4343
3.8: py38
4444
3.9: py39
4545
3.10: py310
46+
3.11: py311

0 commit comments

Comments
 (0)