Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions benchmark/runner/zstrong_gbenchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ def from_scuba_latest_dev(cls):
return cls.from_scuba("zstrong_benchmarks", "raw", filters={"run_id": run_id})

def to_markdown(self) -> str:
# pyrefly: ignore [missing-attribute]
md = self.results.to_markdown(showindex=False).replace("|:--", "|---")
if md is None:
raise RuntimeError("Unable to create markdown, tabulate might be missing")
Expand Down Expand Up @@ -462,5 +463,7 @@ def run(self) -> ZstrongGoogleBenchmarkResults:
result = result.append(curr_result)
else:
result = curr_result
# pyrefly: ignore [missing-attribute]
result.set_timestamp()
# pyrefly: ignore [bad-return]
return result
Loading