X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=0748c6f59cd68a2ba8695146de8d176c20dfc8e8;hb=bc62be08dd974d6efa960673e5d4c16402071750;hp=8c2607c936bc2a761b85f7dce371f32b12188b73;hpb=ac2c84d9561e2344057dc5d4173b0c7718015c4b;p=csit.git diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 8c2607c936..0748c6f59c 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -136,13 +136,14 @@ def table_merged_details(table, input_data): # Transform the data logging.info(" Creating the data set for the {0} '{1}'.". format(table.get("type", ""), table.get("title", ""))) - data = input_data.filter_data(table) + data = input_data.filter_data(table, continue_on_error=True) data = input_data.merge_data(data) data.sort_index(inplace=True) logging.info(" Creating the data set for the {0} '{1}'.". format(table.get("type", ""), table.get("title", ""))) - suites = input_data.filter_data(table, data_set="suites") + suites = input_data.filter_data( + table, continue_on_error=True, data_set="suites") suites = input_data.merge_data(suites) # Prepare the header of the tables @@ -335,7 +336,7 @@ def table_performance_comparison(table, input_data): tbl_dict[tst_name_mod] = {"name": name, "ref-data": list(), "cmp-data": list()} - _tpc_insert_data(target=tbl_dict[tst_name_mod]["ref-data"], + _tpc_insert_data(target=tbl_dict[tst_name_mod]["cmp-data"], src=tst_data, include_tests=table["include-tests"])