Skip test_multiprocessing on macOS

This commit is contained in:
Kovid Goyal 2025-03-28 08:20:53 +05:30
parent d814c8ccaf
commit f841b84333
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -556,6 +556,10 @@ class BuildTest(unittest.TestCase):
def test_multiprocessing():
if ismacos:
# skip because this tests fails on some macOS systems with
# OSError: AF_UNIX path too long. Sigh.
return
from multiprocessing import get_all_start_methods, get_context
for stype in get_all_start_methods():
if stype == 'fork':