Skip to content

Commit

Permalink
Merge pull request #5 from UG4/anaegel-patch-1
Browse files Browse the repository at this point in the history
Update test-solvers.py:  print(process.stdout)
  • Loading branch information
anaegel authored Jun 13, 2024
2 parents 000fa43 + 6fc0498 commit 324b3dd
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 324b3dd

Please sign in to comment.