aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resources/tools/presentation/generator_tables.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 58d3b67b55..21a7f05497 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -374,8 +374,12 @@ def table_performance_comparison(table, input_data):
tbl_dict[tst_name] = {"name": name,
"ref-data": list(),
"cmp-data": list()}
- tbl_dict[tst_name]["ref-data"].\
- append(tst_data["throughput"]["value"])
+ try:
+ tbl_dict[tst_name]["ref-data"].\
+ append(tst_data["throughput"]["value"])
+ except TypeError as err:
+ logging.warning(err)
+ logging.warning(tst_data)
for job, builds in table["compare"]["data"].items():
for build in builds: