We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d93641 commit bf45c41Copy full SHA for bf45c41
1 file changed
scripts/run_tests.py
@@ -59,7 +59,10 @@ def __source_script(script_path):
59
return {}
60
61
def setup_env(self):
62
- self.work_dir = Path(self.__get_project_path()) / "install" / "bin"
+ if (Path(self.__get_project_path()) / "install").exists():
63
+ self.work_dir = Path(self.__get_project_path()) / "install" / "bin"
64
+ else:
65
+ self.work_dir = Path(self.__get_project_path()) / "build" / "bin"
66
67
@staticmethod
68
def __run_exec(command):
0 commit comments