Bug 1676499 - Remove application name from benchmark perfherder extraOptions. r=perftest-reviewers,kimberlythegeek

Differential Revision: https://phabricator.services.mozilla.com/D98359
This commit is contained in:
Gregory Mierzwinski 2020-12-04 14:15:52 +00:00
Родитель 3f8da25152
Коммит bac48c02e2
2 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -123,7 +123,7 @@
"description": "Similar to extraOptions, except it does not break existing performance data series",
"items": {
"type": "string",
"pattern": "^[a-zA-Z0-9]{1,24}$"
"pattern": "^[a-zA-Z0-9-]{1,24}$"
},
"uniqueItems": true,
"maxItems": 14

Просмотреть файл

@ -772,9 +772,6 @@ class BrowsertimeResultsHandler(PerftestResultsHandler):
new_result = _new_standard_result(
new_result, subtest_unit=test.get("subtest_unit", "ms")
)
# XXX Is this still needed?
if self.app != "firefox":
new_result["extra_options"].append(self.app)
LOG.info("parsed new benchmark result: %s" % str(new_result))
return new_result