Skip to content

Commit

Permalink
Update test-solvers.py: print(process.stdout)
Browse files Browse the repository at this point in the history
  • Loading branch information
anaegel authored Jun 13, 2024
1 parent 000fa43 commit 6fc0498
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/test-solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ def test_file(filename):
if (filename.endswith(".py")):
print(f"Processing file: {filename}")
process = subprocess.run("ipython "+ filename, shell=True, capture_output=True, text=True)
print(process.stdout)
if process.returncode != 0:

print(process.returncode)
return False
else:
Expand Down

0 comments on commit 6fc0498

Please sign in to comment.