Bug 1932472 - [perfdocs] Prevent objdir paths from being checked. r=perftest-reviewers,fbilt DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D229683
This commit is contained in:
Greg Mierzwinski 2024-11-22 14:26:36 +00:00
parent 14ab1d43ad
commit 730d9fffd4

View File

@ -477,7 +477,7 @@ class MozperftestGatherer(FrameworkGatherer):
}
"""
for path in list(pathlib.Path(self.workspace_dir).rglob("perftest.toml")):
if "obj-" in str(path):
if "obj-" in str(path) or "objdir-" in str(path):
continue
suite_name = str(path.parent).replace(str(self.workspace_dir), "")