Skip to content

Commit ef1b77d

Browse files
authoredAug 26, 2022
tox.ini: Add py311 in ignore_errors mode
1 parent df78d34 commit ef1b77d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎tox.ini

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# content of: tox.ini, put in same dir as setup.py
22
[tox]
3-
envlist = clean,py{36,37,38,39,310},report
3+
envlist = clean,py{36,37,38,39,310,311},report
44

55
[gh-actions]
66
python =
@@ -9,6 +9,7 @@ python =
99
3.8: py38
1010
3.9: py39
1111
3.10: py310
12+
3.11: py311
1213

1314
[testenv]
1415
deps = -r requirements-test.txt
@@ -17,8 +18,8 @@ commands =
1718
{envpython} -m pip check
1819
pytest --cov --cov-append --cov-context=test --cov-config=tox.ini {posargs}
1920
depends =
20-
py{36,37,38,39,310}: clean
21-
report: py{36,37,38,39,310}
21+
py{36,37,38,39,310,311}: clean
22+
report: py{36,37,38,39,310,311}
2223

2324
[testenv:clean]
2425
basepython = python3.8
@@ -35,7 +36,7 @@ commands =
3536
coverage report
3637
coverage html
3738

38-
[testenv:py310]
39+
[testenv:py311]
3940
ignore_errors = true
4041

4142
[pytest]

0 commit comments

Comments
 (0)