MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / summary_html

Function summary_html

benchmarks/postprocess.py:51–58  ·  view source on GitHub ↗

Generate a HTML summary of benchmark results into the given `directory`

(
    database_path: Path = typer.Argument(..., exists=True),
    directory: Path = Path("summary"),
)

Source from the content-addressed store, hash-verified

49
50@summary.command("html")
51def 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")

Callers

nothing calls this directly

Calls 3

load_existing_databaseFunction · 0.90
generate_summary_htmlFunction · 0.90
infoMethod · 0.80

Tested by

no test coverage detected