mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
bpo-35412: Skip test_multiprocessing_fork and test_multiprocessing_forkserver on Windows (GH-11086)
Forkserver and fork are not available on Windows and therefore these test must be skipped.
This commit is contained in:
parent
dc525f4315
commit
a932d0b496
2 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,9 @@ from test import support
|
|||
if support.PGO:
|
||||
raise unittest.SkipTest("test is not helpful for PGO")
|
||||
|
||||
if sys.platform == "win32":
|
||||
raise unittest.SkipTest("fork is not available on Windows")
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
raise unittest.SkipTest("test may crash on macOS (bpo-33725)")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue