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 286a2bc commit 9234062Copy full SHA for 9234062
testing/test_compat.py
@@ -1,4 +1,5 @@
1
import enum
2
+import sys
3
from functools import partial
4
from functools import wraps
5
from typing import TYPE_CHECKING
@@ -91,6 +92,7 @@ def foo(x):
91
92
assert get_real_func(partial(foo)) is foo
93
94
95
+@pytest.mark.skipif(sys.version_info >= (3, 11), reason="couroutine removed")
96
def test_is_generator_asyncio(pytester: Pytester) -> None:
97
pytester.makepyfile(
98
"""
0 commit comments