Serves a HTML summary of benchmark results, includes comparisons
(
database_path: Path = typer.Argument(..., exists=True),
directory: Path = Path("summary"),
port: int = 5555,
)
| 60 | |
| 61 | @summary.command("serve") |
| 62 | def serve_html( |
| 63 | database_path: Path = typer.Argument(..., exists=True), |
| 64 | directory: Path = Path("summary"), |
| 65 | port: int = 5555, |
| 66 | ): |
| 67 | """Serves a HTML summary of benchmark results, includes comparisons""" |
| 68 | database = load_existing_database(database_path) |
| 69 | serve_summary_html(database, directory, port) |
| 70 | |
| 71 | |
| 72 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected