aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-04-26 15:56:31 +0000
committerTibor Frank <tifrank@cisco.com>2018-04-26 16:05:27 +0000
commitd9760c6c2404311bf63c50f1d227f210b0b5d057 (patch)
tree1d76025755b22cb8a66abe7558e85443c5957fca
parent4b8a943a3f8dd94d413591fc3cb3674905d51bbb (diff)
Report: Add historical data to performance changes table
Change-Id: I6ae8d3a36ada557a2119f6e7f46dde040e4db574 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit e7f9cb1bc6f96ca79fdba328fd14ce197e28c7a7)
-rw-r--r--resources/tools/presentation/generator_tables.py21
1 files changed, 12 insertions, 9 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 92f0ceed45..f86bc1a79f 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -432,17 +432,20 @@ def table_performance_comparison(table, input_data):
for tst_name in tbl_dict.keys():
item = [tbl_dict[tst_name]["name"], ]
if history:
- for hist_data in tbl_dict[tst_name]["history"].values():
- if hist_data:
- data_t = remove_outliers(
- hist_data, outlier_const=table["outlier-const"])
- if data_t:
- item.append(round(mean(data_t) / 1000000, 2))
- item.append(round(stdev(data_t) / 1000000, 2))
+ if tbl_dict[tst_name].get("history", None) is not None:
+ for hist_data in tbl_dict[tst_name]["history"].values():
+ if hist_data:
+ data_t = remove_outliers(
+ hist_data, outlier_const=table["outlier-const"])
+ if data_t:
+ item.append(round(mean(data_t) / 1000000, 2))
+ item.append(round(stdev(data_t) / 1000000, 2))
+ else:
+ item.extend([None, None])
else:
item.extend([None, None])
- else:
- item.extend([None, None])
+ else:
+ item.extend([None, None])
if tbl_dict[tst_name]["ref-data"]:
data_t = remove_outliers(tbl_dict[tst_name]["ref-data"],
outlier_const=table["outlier-const"])