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 12b1f46 commit c473a2dCopy full SHA for c473a2d
conftest.py
@@ -50,8 +50,8 @@ def pytest_ignore_collect(collection_path, config):
50
if sys.version_info >= (3, 8):
51
return None
52
53
- # Skip test_aio.py and test_asgi.py entirely on Python 3.7
54
- if collection_path.name in ["test_aio.py", "test_asgi.py"]:
+ # Skip test_aio.py, test_asgi.py, and test_execution_id_async.py entirely on Python 3.7
+ if collection_path.name in ["test_aio.py", "test_asgi.py", "test_execution_id_async.py"]:
55
return True
56
57
0 commit comments