Skip to content

Commit ee8df3d

Browse files
authored
Bug 1980506 - Enable replicates on for homeview startup test as well. r?#perftest (#8877)
Missed adding the homeview startup test in this bug where we intended to enable for all of the startup tests: https://bugzilla.mozilla.org/show_bug.cgi?id=1977456
1 parent 7e274bd commit ee8df3d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

treeherder/etl/perf.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,18 @@ def _test_should_gather_replicates_based_on(
133133
elif repository.name in ("mozilla-central",):
134134
if suite_name == "speedometer3":
135135
return True
136-
elif "applink-startup" in suite_name or "tab-restore" in suite_name:
136+
elif (
137+
"applink-startup" in suite_name
138+
or "tab-restore" in suite_name
139+
or "homeview" in suite_name
140+
):
137141
return True
138142
elif repository.name in ("autoland",):
139-
if "applink-startup" in suite_name or "tab-restore" in suite_name:
143+
if (
144+
"applink-startup" in suite_name
145+
or "tab-restore" in suite_name
146+
or "homeview" in suite_name
147+
):
140148
return True
141149
return False
142150

0 commit comments

Comments
 (0)