Files
tubestation/taskcluster/gecko_taskgraph/util/perftest.py
KS 6cbb2d6a1d Bug 1840660 - Run performance tests against safari technology preview. r=perftest-reviewers,sparky
This patch adds the ability to run Raptor performance tests
(specifically just speedometer 3 for now) on Safari Technology Preview.

Differential Revision: https://phabricator.services.mozilla.com/D209611
2024-05-14 14:48:20 +00:00

20 lines
512 B
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
def is_external_browser(label):
if any(
external_browser in label
for external_browser in (
"safari",
"safari-tp",
"chrome",
"custom-car",
"chrome-m",
"cstm-car-m",
)
):
return True
return False