summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-21 05:37:26 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-11-21 08:15:29 -0500
commit63d41f41d7719f1ef744bb4a25295de0e8006b53 (patch)
treef80f426ace30c0cf99853c49eb6ee379d170ebd6
parent7345085c3983f5f7d05f64da1af8e43da3dc5639 (diff)
downloadpython-coveragepy-git-63d41f41d7719f1ef744bb4a25295de0e8006b53.tar.gz
debug: see the output from run_in_venv
-rw-r--r--tests/test_venv.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_venv.py b/tests/test_venv.py
index f3455411..1ea8acac 100644
--- a/tests/test_venv.py
+++ b/tests/test_venv.py
@@ -30,6 +30,8 @@ def run_in_venv(cmd):
else:
words[0] = fr"venv/bin/{words[0]}"
status, output = run_command(" ".join(words))
+ # Print the output so if it fails, we can tell what happened.
+ print(output)
assert status == 0
return output