summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multiprocessing_spawn.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-08-24 03:35:39 (GMT)
committerGitHub <noreply@github.com>2023-08-24 03:35:39 (GMT)
commitaa9a359ca2663195b0f04eef46109c28c4ff74d3 (patch)
tree0e32863755a3aaae775c2680f0e051c037ad21e8 /Lib/test/test_multiprocessing_spawn.py
parent174e9da0836844a2138cc8915dd305cb2cd7a583 (diff)
downloadcpython-aa9a359ca2663195b0f04eef46109c28c4ff74d3.zip
cpython-aa9a359ca2663195b0f04eef46109c28c4ff74d3.tar.gz
cpython-aa9a359ca2663195b0f04eef46109c28c4ff74d3.tar.bz2
gh-108388: Split test_multiprocessing_spawn (#108396)
Split test_multiprocessing_fork, test_multiprocessing_forkserver and test_multiprocessing_spawn into test packages. Each package is made of 4 sub-tests: processes, threads, manager and misc. It allows running more tests in parallel and so reduce the total test duration.
Diffstat (limited to 'Lib/test/test_multiprocessing_spawn.py')
-rw-r--r--Lib/test/test_multiprocessing_spawn.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/Lib/test/test_multiprocessing_spawn.py b/Lib/test/test_multiprocessing_spawn.py
deleted file mode 100644
index 6558952..0000000
--- a/Lib/test/test_multiprocessing_spawn.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import unittest
-import test._test_multiprocessing
-
-from test import support
-
-if support.PGO:
- raise unittest.SkipTest("test is not helpful for PGO")
-
-test._test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn')
-
-if __name__ == '__main__':
- unittest.main()