mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-15 04:04:18 +01:00
ci.eval.compare: put things with counts together
This commit is contained in:
parent
210e3e1151
commit
2817f79649
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue