Skip to content

Commit

Permalink
Merge pull request #190 from P403n1x87/ci/benchmarks-summary-first
Browse files Browse the repository at this point in the history
ci: move benchmarks summary to the top
  • Loading branch information
P403n1x87 authored Sep 3, 2023
2 parents e58eb83 + 505115c commit 55f56fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,14 +355,16 @@ def main():
)
)

renderer.render_scenario(title, table)

results.append((title, table))

summary = summarize(results)

renderer.render_summary(summary)

renderer.render_header("Benchmark Results", level=2)
for title, table in results:
renderer.render_scenario(title, table)


if __name__ == "__main__":
try:
Expand Down

0 comments on commit 55f56fb

Please sign in to comment.