From 8eb91bd5827ba2ed74bbbce986af958de6c52b60 Mon Sep 17 00:00:00 2001 From: fcosta_oliveira Date: Thu, 8 May 2025 11:55:23 +0100 Subject: [PATCH] Improve visibility of compare tool output. --- pyproject.toml | 2 +- redis_benchmarks_specification/__compare__/compare.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f525dfbe..5585de58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redis-benchmarks-specification" -version = "0.1.260" +version = "0.1.263" 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." authors = ["filipecosta90 ","Redis Performance Group "] readme = "Readme.md" diff --git a/redis_benchmarks_specification/__compare__/compare.py b/redis_benchmarks_specification/__compare__/compare.py index a8f53231..7c4d16fd 100644 --- a/redis_benchmarks_specification/__compare__/compare.py +++ b/redis_benchmarks_specification/__compare__/compare.py @@ -874,11 +874,12 @@ def compute_regression_table( len_no_datapoints = len(no_datapoints_list) if len_no_datapoints > 0: table_output += f"\n WARNING: There were {len_no_datapoints} benchmarks with NO datapoints for both baseline and comparison.\n\n" + table_output += "
\n NO datapoints for both baseline and comparison:\n\n" no_datapoints_test_names_str = "|".join([l for l in no_datapoints_list]) - table_output += ( f" NO DATAPOINTS test regexp names: {no_datapoints_test_names_str}\n\n" ) + table_output += "\n
\n" return ( detected_regressions,