Skip to content

Commit c473a2d

Browse files
committed
fix: skip async execution_id tests on Python 3.7
1 parent 12b1f46 commit c473a2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def pytest_ignore_collect(collection_path, config):
5050
if sys.version_info >= (3, 8):
5151
return None
5252

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"]:
53+
# Skip test_aio.py, test_asgi.py, and test_execution_id_async.py entirely on Python 3.7
54+
if collection_path.name in ["test_aio.py", "test_asgi.py", "test_execution_id_async.py"]:
5555
return True
5656

5757
return None

0 commit comments

Comments
 (0)