Skip to content

Commit 75d47a7

Browse files
authored
Bug 2000845 - Disable perfherder-data artifact ingestion for mozperftest multi-test suites (#9078)
We’ll temporarily disable artifact ingestion for these suites and switch them to the log-parsing path. Once the issue is fixed, we’ll add them back to the allowlist.
1 parent c0135ca commit 75d47a7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

treeherder/etl/perf.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,16 @@ def _load_perf_datum(job: Job, perf_datum: dict):
359359
def _is_suite_allowed(suites: list, framework_name: str) -> bool:
360360
allowlist_frameworks_suites = {
361361
"build_metrics": ["fetch_content", "compiler_metrics"],
362+
"mozperftest": [
363+
"test_caching.html",
364+
"test_fetch.html",
365+
"test_registration.html",
366+
"test_update.html",
367+
"browser_addManyIds.js",
368+
"browser_addManyNodes.js",
369+
"browser_reflowPseudoelements.js",
370+
"browser_removeManySpellingErrors.js",
371+
],
362372
}
363373
allowed = allowlist_frameworks_suites.get(framework_name)
364374
if not allowed:

0 commit comments

Comments
 (0)