We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9913ced commit 46568ccCopy full SHA for 46568cc
testing/test_unittest.py
@@ -1324,6 +1324,10 @@ def test_async_support(pytester: Pytester) -> None:
1324
1325
def test_asynctest_support(pytester: Pytester) -> None:
1326
"""Check asynctest support (#7110)"""
1327
+ import sys
1328
+ if sys.version_info >= (3, 11):
1329
+ import pytest
1330
+ pytest.skip("asynctest is not compatible with Python 3.11+")
1331
pytest.importorskip("asynctest")
1332
1333
pytester.copy_example("unittest/test_unittest_asynctest.py")
0 commit comments