Skip to content

Commit bd6cc71

Browse files
committed
Add version check for asyncio.timeout in Windows-specific test
Signed-off-by: DanielAvdar <[email protected]>
1 parent 8c6fc2a commit bd6cc71

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/issues/test_552_windows_hang.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99

1010
@pytest.mark.skipif(sys.platform != "win32", reason="Windows-specific test")
11+
@pytest.mark.skipif(sys.version_info < (3, 11), reason="asyncio.timeout in 3.11+")
1112
@pytest.mark.anyio
1213
async def test_windows_process_creation():
1314
"""

0 commit comments

Comments
 (0)