Skip to content

Commit

Permalink
sort benchmark results by name
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Dec 6, 2023
1 parent bc1954d commit df33446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/gen_html.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cat raw | ansi2html -W > html/index.html
echo '```' > report.md
cat raw >> report.md

for file in $(find .benchmarks -type f);
for file in $(find .benchmarks -type f | sort);
do
rm -rf tmp_html results.csv raw
PY_COLORS=1 py.test-benchmark compare $file --histogram histograms/ --group-by func --csv results.csv --sort name >> raw
Expand Down

0 comments on commit df33446

Please sign in to comment.