We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f86cd3 commit 96a6cbcCopy full SHA for 96a6cbc
Lib/test/test_asyncio/test_events.py
@@ -2156,6 +2156,8 @@ def tearDown(self):
2156
super().tearDown()
2157
2158
def test_get_event_loop_new_process(self):
2159
+ # Skip the test if the sem_open() implementation is broken.
2160
+ support.import_module('multiprocessing.synchronize')
2161
async def main():
2162
pool = concurrent.futures.ProcessPoolExecutor()
2163
result = await self.loop.run_in_executor(
Misc/NEWS.d/next/Tests/2017-11-24-18-15-12.bpo-32126.PLmNLn.rst
@@ -0,0 +1,2 @@
1
+Skip test_get_event_loop_new_process in test.test_asyncio.test_events when
2
+sem_open() is not functional.
0 commit comments