From d14a5485e8e3736f9d2f4b04496b3ed7511064dc Mon Sep 17 00:00:00 2001 From: Edwin Lee Date: Tue, 2 Apr 2024 17:38:25 -0500 Subject: [PATCH] Add a bit of debugging prints to the test scripts --- scripts/package_tests/ep_testing/tests/energyplus.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/package_tests/ep_testing/tests/energyplus.py b/scripts/package_tests/ep_testing/tests/energyplus.py index eaf8eea12ab..030086ba3d4 100644 --- a/scripts/package_tests/ep_testing/tests/energyplus.py +++ b/scripts/package_tests/ep_testing/tests/energyplus.py @@ -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)