Generate a HTML summary of benchmark results into the given `directory`
(
database_path: Path = typer.Argument(..., exists=True),
directory: Path = Path("summary"),
)
| 49 | |
| 50 | @summary.command("html") |
| 51 | def summary_html( |
| 52 | database_path: Path = typer.Argument(..., exists=True), |
| 53 | directory: Path = Path("summary"), |
| 54 | ): |
| 55 | """Generate a HTML summary of benchmark results into the given `directory`""" |
| 56 | database = load_existing_database(database_path) |
| 57 | file = generate_summary_html(database, directory) |
| 58 | logging.info(f"You can find the summary in {file}") |
| 59 | |
| 60 | |
| 61 | @summary.command("serve") |
nothing calls this directly
no test coverage detected