We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a7e90 commit 2b204d7Copy full SHA for 2b204d7
redis_benchmarks_specification/__compare__/compare.py
@@ -874,11 +874,12 @@ def compute_regression_table(
874
len_no_datapoints = len(no_datapoints_list)
875
if len_no_datapoints > 0:
876
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"
878
no_datapoints_test_names_str = "|".join([l for l in no_datapoints_list])
-
879
table_output += (
880
f" NO DATAPOINTS test regexp names: {no_datapoints_test_names_str}\n\n"
881
)
882
+ table_output += "\n</details>\n"
883
884
return (
885
detected_regressions,
0 commit comments