Skip to content

Commit

Permalink
Let's make the CI output a bit more verbose
Browse files Browse the repository at this point in the history
Signed-off-by: Bas Zoetekouw <bas.zoetekouw@surf.nl>
  • Loading branch information
baszoetekouw committed Mar 7, 2024
1 parent 73020ad commit 2757a9d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2757a9d

Please sign in to comment.