Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
ci: sort package keys for consistent summary output
Browse files Browse the repository at this point in the history
  • Loading branch information
liblaf committed Aug 27, 2024
1 parent b252cc2 commit de88b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test(self, fn: Callable[[str], None], name: str, pkg: str) -> None:
def summary(self) -> str:
md: str = "| Package | pip | pixi | uv |\n"
md += "| --- | --- | --- | --- |\n"
for pkg in self._records:
for pkg in sorted(self._records.keys()):
md += f"| {pkg} |"
for tool in ["pip", "pixi", "uv"]:
md += " ✅ |" if self._records[pkg][tool] else " ❌ |"
Expand Down

0 comments on commit de88b9b

Please # to comment.