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 b93141a commit 3ea5c85Copy full SHA for 3ea5c85
tests/test_process.py
@@ -685,6 +685,12 @@ async def cancel_make_transport():
685
self.loop.run_until_complete(cancel_make_transport())
686
687
def test_cancel_post_init(self):
688
+ if sys.version_info >= (3, 13) and self.implementation == 'asyncio':
689
+ # https://github.com/python/cpython/issues/103847#issuecomment-3736561321
690
+ # This test started to flake on CPython 3.13 and later,
691
+ # so we skip it for asyncio tests until the issue is resolved.
692
+ self.skipTest('flaky test on CPython 3.13+')
693
+
694
async def cancel_make_transport():
695
coro = self.loop.subprocess_exec(asyncio.SubprocessProtocol,
696
*self.PROGRAM_BLOCKED)
0 commit comments