Skip to content
Snippets Groups Projects
Commit 3f63c434 authored by Florian Fischer's avatar Florian Fischer
Browse files

[summarize] only summarize benchmarks with a summary method

parent c61b23d8
No related branches found
No related tags found
No related merge requests found
...@@ -138,6 +138,9 @@ def summarize(benchmarks=None, ...@@ -138,6 +138,9 @@ def summarize(benchmarks=None,
except FileNotFoundError: except FileNotFoundError:
continue continue
if not hasattr(bench, "summary"):
continue
print_status(f"Summarizing {bench.name} ...") print_status(f"Summarizing {bench.name} ...")
try: try:
bench_sum(bench, exclude_allocators=exclude_allocators, sets=sets) bench_sum(bench, exclude_allocators=exclude_allocators, sets=sets)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment