We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e035c commit 073f032Copy full SHA for 073f032
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 platform.system() == "Windows":
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