Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Skip flaky tests
  • Loading branch information
ShaharNaveh committed Mar 6, 2026
commit d81a028f8810c8e8c2eb994924b1447dc69c6d98
1 change: 1 addition & 0 deletions Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3303,6 +3303,7 @@ def _putter(cls, address, authkey):
queue = manager.get_queue()
queue.put('hello world')

@unittest.skipIf(sys.platform == "linux", "TODO: RUSTPYTHON; Flaky on CI")
def test_rapid_restart(self):
authkey = os.urandom(32)
manager = QueueManager(
Expand Down
1 change: 1 addition & 0 deletions Lib/test/test_asyncio/test_sendfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ def test_sendfile_close_peer_after_receiving(self):
self.assertEqual(srv_proto.data, self.DATA)
self.assertEqual(self.file.tell(), len(self.DATA))

@unittest.skipIf(sys.platform == "linux", "TODO: RUSTPYTHON; Flaky on CI")
def test_sendfile_ssl_close_peer_after_receiving(self):
srv_proto, cli_proto = self.prepare_sendfile(
is_ssl=True, close_after=len(self.DATA))
Expand Down
Loading