Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 8e9afaf8226b62a18080d69533a41159c70193cb authored by Pablo Galindo on 05 October 2020, 17:24:54 UTC
Python 3.10.0a1
Tip revision: 8e9afaf
test_multiprocessing_forkserver.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("forkserver is not available on Windows")

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

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