Kaydet (Commit) 1e1c8f49 authored tarafından Jesus Cea's avatar Jesus Cea

Fix issue #12948: multiprocessing test failures can hang the buildbots

......@@ -2275,13 +2275,11 @@ class TestStdinBadfiledescriptor(unittest.TestCase):
def test_queue_in_process(self):
queue = multiprocessing.Queue()
proc = multiprocessing.Process(target=_TestProcess, args=(queue,))
proc.daemon = True
proc.start()
proc.join()
def test_pool_in_process(self):
p = multiprocessing.Process(target=pool_in_process)
p.daemon = True
p.start()
p.join()
......
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