ci: move metrics scripts under scripts/ci/utils (#20986)

This commit is contained in:
Lianmin Zheng
2026-03-19 23:47:57 -07:00
committed by GitHub
parent 0be88ac44c
commit 712a48c5d2
9 changed files with 26 additions and 27 deletions
+1 -2
View File
@@ -22,7 +22,6 @@ _spec = importlib.util.spec_from_file_location("ci_register", _ci_register_path)
_ci_register = importlib.util.module_from_spec(_spec)
_spec.loader.exec_module(_ci_register)
CIRegistry = _ci_register.CIRegistry
HWBackend = _ci_register.HWBackend
auto_partition = _ci_register.auto_partition
collect_tests = _ci_register.collect_tests
@@ -110,7 +109,7 @@ def main():
total_time = sum(t.est_time for t in enabled)
out(
f"### {suite} (hw={hw_str}, {partition_count} partition(s), "
f"### {suite} (hw={hw_str}, {partition_count} partitions, "
f"{len(enabled)} enabled, {len(disabled)} disabled, est {total_time:.0f}s total)"
)
out()