Skip to content

Commit

Permalink
Setting quiet to False in conftest.py to see if I can get more output…
Browse files Browse the repository at this point in the history
… as to why the Flare tests are failing on macOS.
  • Loading branch information
Rory Barnes committed Oct 24, 2023
1 parent 1cdc31a commit 5ed119e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def vplanet_output(request):
path = os.path.abspath(os.path.dirname(request.fspath))
infile = os.path.join(path, "vpl.in")
output = vplanet.run(infile, quiet=True, clobber=True, C=True)
output = vplanet.run(infile, quiet=False, clobber=True, C=True)
yield output
if CLEAN_OUTPUTS:
for file in (
Expand Down

0 comments on commit 5ed119e

Please sign in to comment.