summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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