Skip to content

Commit 6ca733e

Browse files
committed
Enable testing with Python 3.11 (#9511)
1 parent ac37b1b commit 6ca733e

File tree

7 files changed

+46
-8
lines changed

7 files changed

+46
-8
lines changed

.github/workflows/main.yml

+10
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
"windows-py38",
3838
"windows-py39",
3939
"windows-py310",
40+
"windows-py311",
4041

4142
"ubuntu-py36",
4243
"ubuntu-py37",
@@ -45,6 +46,7 @@ jobs:
4546
"ubuntu-py38",
4647
"ubuntu-py39",
4748
"ubuntu-py310",
49+
"ubuntu-py311",
4850
"ubuntu-pypy3",
4951

5052
"macos-py37",
@@ -81,6 +83,10 @@ jobs:
8183
python: "3.10"
8284
os: windows-latest
8385
tox_env: "py310-xdist"
86+
- name: "windows-py311"
87+
python: "3.11-dev"
88+
os: windows-latest
89+
tox_env: "py311"
8490

8591
- name: "ubuntu-py36"
8692
python: "3.6"
@@ -111,6 +117,10 @@ jobs:
111117
python: "3.10"
112118
os: ubuntu-latest
113119
tox_env: "py310-xdist"
120+
- name: "ubuntu-py311"
121+
python: "3.11-dev"
122+
os: ubuntu-latest
123+
tox_env: "py311"
114124
- name: "ubuntu-pypy3"
115125
python: "pypy-3.7"
116126
os: ubuntu-latest

testing/test_assertion.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -1616,7 +1616,7 @@ def test_raise_assertion_error():
16161616
)
16171617

16181618

1619-
def test_raise_assertion_error_raisin_repr(pytester: Pytester) -> None:
1619+
def test_raise_assertion_error_raising_repr(pytester: Pytester) -> None:
16201620
pytester.makepyfile(
16211621
"""
16221622
class RaisingRepr(object):
@@ -1627,9 +1627,15 @@ def test_raising_repr():
16271627
"""
16281628
)
16291629
result = pytester.runpytest()
1630-
result.stdout.fnmatch_lines(
1631-
["E AssertionError: <unprintable AssertionError object>"]
1632-
)
1630+
if sys.version_info >= (3, 11):
1631+
# python 3.11 has native support for un-str-able exceptions
1632+
result.stdout.fnmatch_lines(
1633+
["E AssertionError: <exception str() failed>"]
1634+
)
1635+
else:
1636+
result.stdout.fnmatch_lines(
1637+
["E AssertionError: <unprintable AssertionError object>"]
1638+
)
16331639

16341640

16351641
def test_issue_1944(pytester: Pytester) -> None:

testing/test_compat.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import enum
2+
import sys
23
from functools import partial
34
from functools import wraps
45
from typing import TYPE_CHECKING
@@ -91,6 +92,7 @@ def foo(x):
9192
assert get_real_func(partial(foo)) is foo
9293

9394

95+
@pytest.mark.skipif(sys.version_info >= (3, 11), reason="couroutine removed")
9496
def test_is_generator_asyncio(pytester: Pytester) -> None:
9597
pytester.makepyfile(
9698
"""

testing/test_doctest.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import inspect
2+
import sys
23
import textwrap
34
from pathlib import Path
45
from typing import Callable
@@ -200,6 +201,7 @@ def test_doctest_unexpected_exception(self, pytester: Pytester):
200201
"Traceback (most recent call last):",
201202
' File "*/doctest.py", line *, in __run',
202203
" *",
204+
*((" *^^^^*",) if sys.version_info >= (3, 11) else ()),
203205
' File "<doctest test_doctest_unexpected_exception.txt[1]>", line 1, in <module>',
204206
"ZeroDivisionError: division by zero",
205207
"*/test_doctest_unexpected_exception.txt:2: UnexpectedException",

testing/test_main.py

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import argparse
22
import os
33
import re
4+
import sys
45
from pathlib import Path
56
from typing import Optional
67

@@ -44,16 +45,32 @@ def pytest_internalerror(excrepr, excinfo):
4445
assert result.ret == ExitCode.INTERNAL_ERROR
4546
assert result.stdout.lines[0] == "INTERNALERROR> Traceback (most recent call last):"
4647

48+
end_lines = (
49+
result.stdout.lines[-4:]
50+
if sys.version_info >= (3, 11)
51+
else result.stdout.lines[-3:]
52+
)
53+
4754
if exc == SystemExit:
48-
assert result.stdout.lines[-3:] == [
55+
assert end_lines == [
4956
f'INTERNALERROR> File "{c1}", line 4, in pytest_sessionstart',
5057
'INTERNALERROR> raise SystemExit("boom")',
58+
*(
59+
("INTERNALERROR> ^^^^^^^^^^^^^^^^^^^^^^^^",)
60+
if sys.version_info >= (3, 11)
61+
else ()
62+
),
5163
"INTERNALERROR> SystemExit: boom",
5264
]
5365
else:
54-
assert result.stdout.lines[-3:] == [
66+
assert end_lines == [
5567
f'INTERNALERROR> File "{c1}", line 4, in pytest_sessionstart',
5668
'INTERNALERROR> raise ValueError("boom")',
69+
*(
70+
("INTERNALERROR> ^^^^^^^^^^^^^^^^^^^^^^^^",)
71+
if sys.version_info >= (3, 11)
72+
else ()
73+
),
5774
"INTERNALERROR> ValueError: boom",
5875
]
5976
if returncode is False:

testing/test_pytester.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,8 @@ def test_run_result_repr() -> None:
743743

744744
# known exit code
745745
r = pytester_mod.RunResult(1, outlines, errlines, duration=0.5)
746-
assert (
747-
repr(r) == "<RunResult ret=ExitCode.TESTS_FAILED len(stdout.lines)=3"
746+
assert repr(r) == (
747+
f"<RunResult ret={str(pytest.ExitCode.TESTS_FAILED)} len(stdout.lines)=3"
748748
" len(stderr.lines)=4 duration=0.50s>"
749749
)
750750

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ envlist =
99
py38
1010
py39
1111
py310
12+
py311
1213
pypy3
1314
py37-{pexpect,xdist,unittestextras,numpy,pluggymain}
1415
doctesting

0 commit comments

Comments
 (0)