Skip to content

Commit 4b116de

Browse files
committed
test: skip pause/resume test on python 3.13 and greater
Accounting in asyncio.DatagramTransport is broken, so this won't pass. python/cpython#135444 python/cpython#135445
1 parent 0ff3d60 commit 4b116de

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

test/test_aio.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,7 @@ async def test_unconnected_sender(addr: _Address) -> None:
393393
connected.close()
394394

395395

396+
@pytest.mark.skipif(sys.version_info >= (3, 13), reason="https://github.com/python/cpython/issues/135444")
396397
@pytest.mark.asyncio
397398
async def test_protocol_pause_resume(
398399
monkeypatch: pytest.MonkeyPatch,

0 commit comments

Comments
 (0)