We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e274bd commit ee8df3dCopy full SHA for ee8df3d
treeherder/etl/perf.py
@@ -133,10 +133,18 @@ def _test_should_gather_replicates_based_on(
133
elif repository.name in ("mozilla-central",):
134
if suite_name == "speedometer3":
135
return True
136
- elif "applink-startup" in suite_name or "tab-restore" in suite_name:
+ elif (
137
+ "applink-startup" in suite_name
138
+ or "tab-restore" in suite_name
139
+ or "homeview" in suite_name
140
+ ):
141
142
elif repository.name in ("autoland",):
- if "applink-startup" in suite_name or "tab-restore" in suite_name:
143
+ if (
144
145
146
147
148
149
return False
150
0 commit comments