Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c33378df3988de26a07df9cb9ba5df4192ed9c4e authored by Ɓukasz Langa on 24 January 2020, 21:05:07 UTC
Python 3.9.0a3
Tip revision: c33378d
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