mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 07:38:27 -06:00
Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
9
Dependencies/Python/Lib/test/test_multiprocessing_spawn/__init__.py
vendored
Normal file
9
Dependencies/Python/Lib/test/test_multiprocessing_spawn/__init__.py
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
import os.path
|
||||
import unittest
|
||||
from test import support
|
||||
|
||||
if support.PGO:
|
||||
raise unittest.SkipTest("test is not helpful for PGO")
|
||||
|
||||
def load_tests(*args):
|
||||
return support.load_package_tests(os.path.dirname(__file__), *args)
|
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_manager.py
vendored
Normal file
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_manager.py
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import unittest
|
||||
from test._test_multiprocessing import install_tests_in_module_dict
|
||||
|
||||
install_tests_in_module_dict(globals(), 'spawn', only_type="manager")
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_misc.py
vendored
Normal file
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_misc.py
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import unittest
|
||||
from test._test_multiprocessing import install_tests_in_module_dict
|
||||
|
||||
install_tests_in_module_dict(globals(), 'spawn', exclude_types=True)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_processes.py
vendored
Normal file
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_processes.py
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import unittest
|
||||
from test._test_multiprocessing import install_tests_in_module_dict
|
||||
|
||||
install_tests_in_module_dict(globals(), 'spawn', only_type="processes")
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_threads.py
vendored
Normal file
7
Dependencies/Python/Lib/test/test_multiprocessing_spawn/test_threads.py
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
import unittest
|
||||
from test._test_multiprocessing import install_tests_in_module_dict
|
||||
|
||||
install_tests_in_module_dict(globals(), 'spawn', only_type="threads")
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Reference in New Issue
Block a user