Bug 1787272 - Prevent gathering perfstats on chrome. r=perftest-reviewers,AlexandruIonescu

Differential Revision: https://phabricator.services.mozilla.com/D155612
This commit is contained in:
Gregory Mierzwinski 2022-08-26 11:01:52 +00:00
parent 44438f746a
commit ec2bbbec5a

View File

@ -340,8 +340,9 @@ def get_raptor_test_list(args, oskey):
# subtest comes from matching test ini file name, so add it
tests_to_run.append(next_test)
if args.collect_perfstats:
next_test["perfstats"] = "true"
if args.collect_perfstats and "chrom" not in args.app.lower():
for next_test in tests_to_run:
next_test["perfstats"] = "true"
# enable live sites if requested with --live-sites
if args.live_sites: