Skip to content

Commit

Permalink
Use absolute path for NeMo launcher repository
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo committed Nov 15, 2024
1 parent def60ed commit 65a62c0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def gen_exec_command(self, tr: TestRun) -> str:
f"Local clone of git repo {tdef.python_executable.git_repo} does not exist. "
"Please ensure to run installation before running the test."
)
repo_path = self.system.install_path / tdef.python_executable.git_repo.repo_name # dry-run compatibility
repo_path = (
self.system.install_path / tdef.python_executable.git_repo.repo_name
).absolute() # dry-run compatibility
venv_path = tdef.python_executable.venv_path
if not venv_path:
logging.warning(
Expand Down

0 comments on commit 65a62c0

Please sign in to comment.