X Tutup
Skip to content
Open
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_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
2 changes: 2 additions & 0 deletions Lib/test/test_importlib/test_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ def is_package(self, fullname):

return SpecLoader()

@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
def test_fresh(self):
with warnings.catch_warnings():
warnings.simplefilter("ignore", DeprecationWarning)
Expand All @@ -375,6 +376,7 @@ def test_fresh(self):
self.assertIsNotNone(module.__path__,
module.__spec__.submodule_search_locations)

@unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON; Flaky on CI")
def test_reload(self):
with warnings.catch_warnings():
warnings.simplefilter("ignore", DeprecationWarning)
Expand Down
Loading
X Tutup