Skip to content

Commit

Permalink
print return code of mysteriously failing test
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Hillman <[email protected]>
  • Loading branch information
peterhillman committed Jun 18, 2024
1 parent 1c884d4 commit c2dc7bc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/test/bin/test_exrmetrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def cleanup():

result = run (command, stdout=PIPE, stderr=PIPE, universal_newlines=True)
print(" ".join(result.args))
print(result.returncode)
print(result.stdout)
print(result.stderr)
assert(result.returncode == 0), "\n"+result.stderr
Expand Down

0 comments on commit c2dc7bc

Please sign in to comment.