Unverified Commit 2817f796 authored by Philip Taron's avatar Philip Taron
Browse files

ci.eval.compare: put things with counts together

parent 210e3e11
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -86,8 +86,10 @@ def metric_sort_key(name: str) -> str:
        return (2, name)
    elif name.endswith(("bytes", "Bytes")):
        return (3, name)
    else:
    elif name.startswith("nr") or name.endswith("number"):
        return (4, name)
    else:
        return (5, name)


def dataframe_to_markdown(df: pd.DataFrame) -> str: