File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -723,7 +723,7 @@ def has_result(
723
723
benchmark_hash : str ,
724
724
progress : bool = True ,
725
725
) -> Result | None :
726
- if machine == " all" :
726
+ if machine in ( "__really_all" , " all") :
727
727
nickname = None
728
728
else :
729
729
_ , _ , nickname = machine .split ("-" )
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def _main(
48
48
print ("need_to_run=false" )
49
49
else :
50
50
need_to_run = (
51
- machine == " all"
51
+ machine in ( "__really_all" , " all")
52
52
or has_result (
53
53
Path ("results" ),
54
54
merge_base ,
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def _main(
74
74
git .remove (results_dir .parent , filepath )
75
75
should_run = True
76
76
else :
77
- should_run = machine == " all" or found_result is None
77
+ should_run = ( machine in ( "__really_all" , " all")) or found_result is None
78
78
79
79
print (f"should_run={ str (should_run ).lower ()} " )
80
80
You can’t perform that action at this time.
0 commit comments