diff --git a/tests/utils.py b/tests/utils.py index 226e045d..11e907f9 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -8,4 +8,8 @@ def capture(command): stderr=subprocess.PIPE, ) out, err = proc.communicate() + + print("stdout:\n" + out.decode('utf-8')) + print("stderr:\n" + err.decode('utf-8')) + return out, err, proc.returncode