From: Tibor Frank Date: Fri, 26 Jan 2018 19:21:18 +0000 (+0100) Subject: Report: Source data X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=49033c34ed62a40d280724414ff5be1c12edc5b7 Report: Source data Change-Id: Ic8951568eb02b8eb998638f76503f87ea8e4929b Signed-off-by: Tibor Frank --- diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 21a7f05497..4b1da90068 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -378,14 +378,18 @@ def table_performance_comparison(table, input_data): tbl_dict[tst_name]["ref-data"].\ append(tst_data["throughput"]["value"]) except TypeError as err: - logging.warning(err) - logging.warning(tst_data) + pass # No data in output.xml for this test for job, builds in table["compare"]["data"].items(): for build in builds: for tst_name, tst_data in data[job][str(build)].iteritems(): - tbl_dict[tst_name]["cmp-data"].\ - append(tst_data["throughput"]["value"]) + try: + tbl_dict[tst_name]["cmp-data"].\ + append(tst_data["throughput"]["value"]) + except KeyError: + pass + except TypeError: + tbl_dict.pop(tst_name, None) tbl_lst = list() for tst_name in tbl_dict.keys():