Issue 19734: better diagnostics for test_venv failures
This commit is contained in:
parent
fcafe43320
commit
6fd12f2b33
@ -285,15 +285,27 @@ class EnsurePipTest(BaseTest):
|
|||||||
# warnings in current versions of Python. Ensure related
|
# warnings in current versions of Python. Ensure related
|
||||||
# environment settings don't cause venv to fail.
|
# environment settings don't cause venv to fail.
|
||||||
envvars["PYTHONWARNINGS"] = "e"
|
envvars["PYTHONWARNINGS"] = "e"
|
||||||
self.run_with_capture(venv.create, self.env_dir, with_pip=True)
|
try:
|
||||||
|
self.run_with_capture(venv.create, self.env_dir, with_pip=True)
|
||||||
|
except subprocess.CalledProcessError as exc:
|
||||||
|
# The output this produces can be a little hard to read, but
|
||||||
|
# least it has all the details
|
||||||
|
details = exc.output.decode(errors="replace")
|
||||||
|
msg = "{}\n\n**Subprocess Output**\n{}".format(exc, details)
|
||||||
|
self.fail(msg)
|
||||||
envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe)
|
envpy = os.path.join(os.path.realpath(self.env_dir), self.bindir, self.exe)
|
||||||
cmd = [envpy, '-m', 'pip', '--version']
|
cmd = [envpy, '-m', 'pip', '--version']
|
||||||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.PIPE)
|
stderr=subprocess.PIPE)
|
||||||
out, err = p.communicate()
|
out, err = p.communicate()
|
||||||
self.assertEqual(err, b"")
|
# We force everything to text, so unittest gives the detailed diff
|
||||||
self.assertTrue(out.startswith(b"pip"))
|
# if we get unexpected results
|
||||||
self.assertIn(self.env_dir.encode(), out)
|
err = err.decode("latin-1") # Force to text, prevent decoding errors
|
||||||
|
self.assertEqual(err, "")
|
||||||
|
out = out.decode("latin-1") # Force to text, prevent decoding errors
|
||||||
|
env_dir = os.fsencode(self.env_dir).decode("latin-1")
|
||||||
|
self.assertTrue(out.startswith("pip"))
|
||||||
|
self.assertIn(env_dir, out)
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
|
@ -237,9 +237,9 @@ class EnvBuilder:
|
|||||||
# We run ensurepip in isolated mode to avoid side effects from
|
# We run ensurepip in isolated mode to avoid side effects from
|
||||||
# environment vars, the current directory and anything else
|
# environment vars, the current directory and anything else
|
||||||
# intended for the global Python environment
|
# intended for the global Python environment
|
||||||
cmd = [context.env_exe, '-Im', 'ensurepip', '--upgrade',
|
cmd = [context.env_exe, '-m', 'ensurepip', '--upgrade',
|
||||||
'--default-pip']
|
'--default-pip']
|
||||||
subprocess.check_output(cmd)
|
subprocess.check_output(cmd, stderr=subprocess.STDOUT)
|
||||||
|
|
||||||
def setup_scripts(self, context):
|
def setup_scripts(self, context):
|
||||||
"""
|
"""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user