We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27fbe24 commit 65dee6cCopy full SHA for 65dee6c
2 files changed
Lib/test/test_asyncio/test_events.py
@@ -791,6 +791,7 @@ def test_create_connection_local_addr(self):
791
self.assertEqual(port, expected)
792
tr.close()
793
794
+ @unittest.skipIf(sys.platform == "linux", "TODO: Flaky on CI")
795
@socket_helper.skip_if_tcp_blackhole
796
def test_create_connection_local_addr_skip_different_family(self):
797
# See https://github.com/python/cpython/issues/86508
Lib/test/test_asyncio/test_subprocess.py
@@ -628,6 +628,7 @@ def kill():
628
self.assertTrue(killed)
629
test_utils.run_briefly(self.loop)
630
631
+ @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
632
def test_close_dont_kill_finished(self):
633
634
async def kill_running():
0 commit comments