Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Lib/test/test_asyncio/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,7 @@ def test_create_connection_local_addr(self):
self.assertEqual(port, expected)
tr.close()

@unittest.skipIf(sys.platform == "linux", "TODO: Flaky on CI")

@ShaharNaveh ShaharNaveh Jun 11, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
@unittest.skipIf(sys.platform == "linux", "TODO: Flaky on CI")
@unittest.skipIf(sys.platform == "linux", "TODO: RUSTPYTHON, Flaky on CI")

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops, thanks!

@socket_helper.skip_if_tcp_blackhole
def test_create_connection_local_addr_skip_different_family(self):
# See https://github.com/python/cpython/issues/86508
Expand Down
1 change: 1 addition & 0 deletions Lib/test/test_asyncio/test_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ def kill():
self.assertTrue(killed)
test_utils.run_briefly(self.loop)

@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
def test_close_dont_kill_finished(self):

async def kill_running():
Expand Down
Loading