Skip to content

Commit 68c1a0b

Browse files
committed
Fix __really_all
1 parent f766f61 commit 68c1a0b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: bench_runner/result.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def has_result(
723723
benchmark_hash: str,
724724
progress: bool = True,
725725
) -> Result | None:
726-
if machine == "all":
726+
if machine in ("__really_all", "all"):
727727
nickname = None
728728
else:
729729
_, _, nickname = machine.split("-")

Diff for: bench_runner/scripts/get_merge_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _main(
4848
print("need_to_run=false")
4949
else:
5050
need_to_run = (
51-
machine == "all"
51+
machine in ("__really_all", "all")
5252
or has_result(
5353
Path("results"),
5454
merge_base,

Diff for: bench_runner/scripts/should_run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _main(
7474
git.remove(results_dir.parent, filepath)
7575
should_run = True
7676
else:
77-
should_run = machine == "all" or found_result is None
77+
should_run = (machine in ("__really_all", "all")) or found_result is None
7878

7979
print(f"should_run={str(should_run).lower()}")
8080

0 commit comments

Comments
 (0)