diff --git a/ep_testing/tests/api.py b/ep_testing/tests/api.py index ec5d8e4..46f2e6f 100644 --- a/ep_testing/tests/api.py +++ b/ep_testing/tests/api.py @@ -77,8 +77,7 @@ def run(self, install_root: str, verbose: bool, kwargs: dict): my_env["PATH"] = install_root + ";" + my_env["PATH"] if self.os == OS.Mac: # while it runs OK locally, for some reason on GHA, running a Plugin file from the Python API seg-faults - idf_to_run = os.path.join(install_root, 'ExampleFiles', 'PythonPluginCustomOutputVariable.idf') - # '1ZoneUncontrolled.idf') + idf_to_run = os.path.join(install_root, 'ExampleFiles', '1ZoneUncontrolled.idf') else: idf_to_run = os.path.join(install_root, 'ExampleFiles', 'PythonPluginCustomOutputVariable.idf') my_check_call(self.verbose, [py, python_file_path, '-D', idf_to_run], env=my_env)