Test that the multiprocessing is able to spawn itself
(self)
| 628 | |
| 629 | @requireVenvCreate |
| 630 | def test_multiprocessing_recursion(self): |
| 631 | """ |
| 632 | Test that the multiprocessing is able to spawn itself |
| 633 | """ |
| 634 | skip_if_broken_multiprocessing_synchronize() |
| 635 | |
| 636 | rmtree(self.env_dir) |
| 637 | self.run_with_capture(venv.create, self.env_dir) |
| 638 | script = os.path.join(TEST_HOME_DIR, '_test_venv_multiprocessing.py') |
| 639 | subprocess.check_call([self.envpy(real_env_dir=True), "-I", script]) |
| 640 | |
| 641 | @unittest.skipIf(os.name == 'nt', 'not relevant on Windows') |
| 642 | def test_deactivate_with_strict_bash_opts(self): |
nothing calls this directly
no test coverage detected