We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db0c79 commit 8313ad7Copy full SHA for 8313ad7
1 file changed
conftest.py
@@ -49,11 +49,11 @@ def pytest_ignore_collect(path, config):
49
"""Ignore async test files on Python 3.7 since Starlette requires Python 3.8+"""
50
if sys.version_info >= (3, 8):
51
return False
52
-
+
53
# Skip test_aio.py entirely on Python 3.7
54
if path.basename == "test_aio.py":
55
return True
56
57
58
59
0 commit comments