Skip to content

Commit

Permalink
Add a bit of debugging prints to the test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Apr 2, 2024
1 parent aa598ed commit d14a548
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/package_tests/ep_testing/tests/energyplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def run(self, install_root: str, verbose: bool, kwargs: dict):
else:
eplus_binary_to_use = eplus_binary

print(f"Attempting to execute the EnergyPlus binary located at: {eplus_binary}")
print(f"Does it exist? {os.path.exists(eplus_binary)}")
cmd = [eplus_binary_to_use, '-D', idf_path]
r = subprocess.run(cmd,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Expand Down

0 comments on commit d14a548

Please sign in to comment.