Staging
v0.5.1
https://github.com/python/cpython
Revision 3ec9d019013a9e9125d4f8669be177b9154cb45b authored by Senthil Kumaran on 03 December 2020, 03:48:14 UTC, committed by GitHub on 03 December 2020, 03:48:14 UTC
1 parent 5291639
Raw File
Tip revision: 3ec9d019013a9e9125d4f8669be177b9154cb45b authored by Senthil Kumaran on 03 December 2020, 03:48:14 UTC
Remove the conditional for setting query. (#23604)
Tip revision: 3ec9d01
test_multiprocessing_fork.py
import unittest
import test._test_multiprocessing

import sys
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)")

test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork')

if __name__ == '__main__':
    unittest.main()
back to top