(
paths: str | Path | Sequence[str | Path],
*,
benchmark_files: Sequence[str | Path] | None = None,
)
| 84 | |
| 85 | |
| 86 | def load_normalized_results( |
| 87 | paths: str | Path | Sequence[str | Path], |
| 88 | *, |
| 89 | benchmark_files: Sequence[str | Path] | None = None, |
| 90 | ) -> list[NormalizedResult]: |
| 91 | return list(iter_normalized_results(paths, benchmark_files=benchmark_files)) |
| 92 | |
| 93 | |
| 94 | def iter_normalized_results( |
no test coverage detected