Commit 24524199 authored by Richard Oudkerk's avatar Richard Oudkerk

Issue #14669: Skip multiprocessing connection pickling test on MacOSX

Passing of fds is unreliable on MacOSX, compare issues #6560 and #12958.
parent 4460c347
...@@ -1960,6 +1960,8 @@ class _TestPoll(unittest.TestCase): ...@@ -1960,6 +1960,8 @@ class _TestPoll(unittest.TestCase):
# Test of sending connection and socket objects between processes # Test of sending connection and socket objects between processes
# #
# Intermittent fails on Mac OS X -- see Issue14669 and Issue12958
@unittest.skipIf(sys.platform == "darwin", "fd passing unreliable on Mac OS X")
@unittest.skipUnless(HAS_REDUCTION, "test needs multiprocessing.reduction") @unittest.skipUnless(HAS_REDUCTION, "test needs multiprocessing.reduction")
class _TestPicklingConnections(BaseTestCase): class _TestPicklingConnections(BaseTestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment