diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-21 05:37:26 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-21 05:37:26 -0500 |
commit | 9fb056b6b892c741f5a8a13a309628f6b72d19d5 (patch) | |
tree | e3a985c9b60b6d1c7519148717291661541ac413 /tests/test_venv.py | |
parent | 7345085c3983f5f7d05f64da1af8e43da3dc5639 (diff) | |
download | python-coveragepy-git-nedbat/fix-win.tar.gz |
debug: see the output from run_in_venvnedbat/fix-win
Diffstat (limited to 'tests/test_venv.py')
-rw-r--r-- | tests/test_venv.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_venv.py b/tests/test_venv.py index f3455411..776abb60 100644 --- a/tests/test_venv.py +++ b/tests/test_venv.py @@ -30,6 +30,7 @@ def run_in_venv(cmd): else: words[0] = fr"venv/bin/{words[0]}" status, output = run_command(" ".join(words)) + print(output) assert status == 0 return output |