diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-10-12 12:44:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-10-12 12:44:01 (GMT) |
commit | e8785ff82a1b3227ace7c52979624756d32b393f (patch) | |
tree | 3a536b49d41ec31fa14e9d92d96bfedb3ebd68b3 /Lib/test/test_compileall.py | |
parent | c2228c89957bfbcbeb4cff4a2811fc0359a8b912 (diff) | |
download | cpython-e8785ff82a1b3227ace7c52979624756d32b393f.zip cpython-e8785ff82a1b3227ace7c52979624756d32b393f.tar.gz cpython-e8785ff82a1b3227ace7c52979624756d32b393f.tar.bz2 |
Close #18754: Run Python child processes in isolated more in the test suite.
Diffstat (limited to 'Lib/test/test_compileall.py')
-rw-r--r-- | Lib/test/test_compileall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index cf58ca6..2122ade 100644 --- a/Lib/test/test_compileall.py +++ b/Lib/test/test_compileall.py @@ -295,7 +295,7 @@ class CommandLineTests(unittest.TestCase): pyc = importlib.util.cache_from_source(bazfn) os.rename(pyc, os.path.join(self.pkgdir, 'baz.pyc')) os.remove(bazfn) - rc, out, err = script_helper.assert_python_failure(fn) + rc, out, err = script_helper.assert_python_failure(fn, __isolated=False) self.assertRegex(err, b'File "dinsdale') def test_include_bad_file(self): |