File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
treeherder/perf/auto_perf_sheriffing Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -282,6 +282,9 @@ def telemetry_alert(self):
282282 repository = Repository .objects .get (name = "mozilla-central" )
283283 framework = PerformanceFramework .objects .get (name = "telemetry" )
284284 for metric_info in metric_definitions :
285+ if metric_info ["platform" ] == "mobile" :
286+ # Skip mobile detection since it's currently broken
287+ continue
285288 if metric_info ["name" ] not in INITIAL_PROBES :
286289 continue
287290 try :
@@ -300,11 +303,7 @@ def telemetry_alert(self):
300303 logger .info (f"Running detection for { probe .name } " )
301304 cdf_ts_detector = ts_detectors [probe .get_change_detection_technique ()]
302305
303- for platform in ("Windows" , "Darwin" , "Linux" ):
304- if metric_info ["platform" ] == "mobile" and platform != "Mobile" :
305- continue
306- elif metric_info ["platform" ] == "desktop" and platform == "Mobile" :
307- continue
306+ for platform in ("Windows" ,):
308307 logger .info (f"On Platform { platform } " )
309308 try :
310309 data = get_metric_table (
You can’t perform that action at this time.
0 commit comments