Skip to content

Commit

Permalink
build: tweak output of benchmark post-processing
Browse files Browse the repository at this point in the history
  • Loading branch information
autumnjolitz committed Jul 30, 2024
1 parent 1e0e821 commit 10095e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
keys = [""]
rows = [None] * len(platforms)
for platform, group, test_name, result in items:
col_name = f"{group}\n{test_name}"
col_name = f"{group} [**{test_name}**]"
try:
keys.index(col_name)
except ValueError:
Expand All @@ -208,7 +208,7 @@ jobs:
platforms = tuple(sorted(platforms, key=_sort, reverse=True))
print("platforms", platforms)
for platform, group, test_name, result in items:
col_name = f"{group}\n{test_name}"
col_name = f"{group} [**{test_name}**]"
key_index = keys.index(col_name)
row_index = platforms.index(platform)
if rows[row_index] is None:
Expand Down

0 comments on commit 10095e7

Please sign in to comment.