Skip to content

Commit

Permalink
Make printout after test ert run more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
equinor-ruaj committed Oct 9, 2024
1 parent cac6cb4 commit 8a77c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def write_ert_config_and_run(runpath):
stdout, stderr = process.communicate()

print(
f"After er run all these files where found at runpath {list(Path(runpath).glob('*'))}"
f"After ert run all these files where found at runpath {[item.name for item in list(Path(runpath).glob('*'))]}"
)
if stdout:
print("stdout:", stdout.decode(encoding), sep="\n")
Expand Down

0 comments on commit 8a77c97

Please sign in to comment.