Skip to content

Commit 8eb91bd

Browse files
Improve visibility of compare tool output.
1 parent 452258e commit 8eb91bd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redis-benchmarks-specification"
3-
version = "0.1.260"
3+
version = "0.1.263"
44
description = "The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute."
55
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "Readme.md"

redis_benchmarks_specification/__compare__/compare.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,11 +874,12 @@ def compute_regression_table(
874874
len_no_datapoints = len(no_datapoints_list)
875875
if len_no_datapoints > 0:
876876
table_output += f"\n WARNING: There were {len_no_datapoints} benchmarks with NO datapoints for both baseline and comparison.\n\n"
877+
table_output += "<details>\n <summary>NO datapoints for both baseline and comparison:</summary>\n\n"
877878
no_datapoints_test_names_str = "|".join([l for l in no_datapoints_list])
878-
879879
table_output += (
880880
f" NO DATAPOINTS test regexp names: {no_datapoints_test_names_str}\n\n"
881881
)
882+
table_output += "\n</details>\n"
882883

883884
return (
884885
detected_regressions,

0 commit comments

Comments
 (0)