Skip to content

Commit 686254f

Browse files
author
Alan Christie
committed
fix: Fix launcher execution directory
1 parent f15526b commit 686254f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/instance_launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ def launch(
7474
response = self._api_adapter.create_task(instance_id=instance_id)
7575
task_id = response["id"]
7676

77-
# Where to run the job (i.e. in the project directory)
78-
execution_directory = f"project-root/{project_id}"
77+
# Where to run the job (i.e. in the test project directory)
78+
execution_directory = f"tests/project-root/{project_id}"
7979
os.makedirs(execution_directory, exist_ok=True)
8080

8181
# Apply variables to the step's Job command.

0 commit comments

Comments
 (0)