Skip to content
Merged
Changes from 23 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion scripts/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ def __source_script(script_path):
return {}

def setup_env(self):
self.work_dir = Path(self.__get_project_path()) / "install" / "bin"
if (Path(self.__get_project_path()) / "install").exists():
self.work_dir = Path(self.__get_project_path()) / "install" / "bin"
else:
self.work_dir = Path(self.__get_project_path()) / "build" / "bin"

@staticmethod
def __run_exec(command):
Expand Down
Loading