File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,12 @@ def main(
53
53
if branch is None :
54
54
git_path = os .path .join (base_dir , example ["instance_id" ])
55
55
branch = get_active_branch (git_path )
56
- log_dir = RUN_PYTEST_LOG_DIR / example ["instance_id" ] / branch / hashed_test_ids
56
+ log_dir = (
57
+ RUN_PYTEST_LOG_DIR
58
+ / example ["instance_id" ].split ("/" )[- 1 ]
59
+ / branch
60
+ / hashed_test_ids
61
+ )
57
62
log_dirs .append (str (log_dir ))
58
63
triples .append ((example ["instance_id" ], example ["test" ]["test_dir" ], branch ))
59
64
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ def make_repo_script_list(self) -> list[str]:
238
238
cmd = f"uv pip install { pip_packages } "
239
239
setup_commands .append (cmd )
240
240
setup_commands .append (
241
- "uv pip install -U pytest pytest-cov coverage pytest-json-report"
241
+ "uv pip install pytest pytest-cov coverage pytest-json-report"
242
242
)
243
243
return setup_commands
244
244
You can’t perform that action at this time.
0 commit comments