8000 gh-115538: Use isolate mode when running venv test_multiprocessing_re… · python/cpython@4ec3477 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4ec3477

Browse files
aiskvstinner
andauthored
gh-115538: Use isolate mode when running venv test_multiprocessing_recursion() (#117116)
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 743f2c6 commit 4ec3477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_venv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ def test_multiprocessing_recursion(self):
531531
rmtree(self.env_dir)
532532
self.run_with_capture(venv.create, self.env_dir)
533533
script = os.path.join(TEST_HOME_DIR, '_test_venv_multiprocessing.py')
534-
subprocess.check_call([self.envpy(real_env_dir 4FFD =True), script])
534+
subprocess.check_call([self.envpy(real_env_dir=True), "-I", script])
535535

536536
@unittest.skipIf(os.name == 'nt', 'not relevant on Windows')
537537
def test_deactivate_with_strict_bash_opts(self):

0 commit comments

Comments
 (0)
0