X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=7f4071bef3a7f8786cb847e4868a428012fe3db0;hp=379205cbeaebbcae0c9db10b8796f985d87840cd;hb=a7e064b331e539b3294c8c8208a4fab60c7144aa;hpb=0d53d645a6d78b581e7ad1e257af4f943a52f465;ds=sidebyside diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 379205cbea..7f4071bef3 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -227,21 +227,23 @@ def table_performance_improvements(table, input_data): with open(file_name, "w") as file_handler: file_handler.write(",".join(header) + "\n") for item in tbl_lst: + if isinstance(item[-1]["data"], float): + rel_change = round(item[-1]["data"], 1) + else: + rel_change = item[-1]["data"] if "ndr_top" in file_name \ and "ndr" in item[1]["data"] \ - and round(item[-1]["data"], 1) >= 10.0: + and rel_change >= 10.0: _write_line_to_file(file_handler, item) elif "pdr_top" in file_name \ and "pdr" in item[1]["data"] \ - and round(item[-1]["data"], 1) >= 10.0: + and rel_change >= 10.0: _write_line_to_file(file_handler, item) elif "ndr_low" in file_name \ - and "ndr" in item[1]["data"] \ - and round(item[-1]["data"], 1) < 10.0: + and "ndr" in item[1]["data"]: _write_line_to_file(file_handler, item) elif "pdr_low" in file_name \ - and "pdr" in item[1]["data"] \ - and round(item[-1]["data"], 1) < 10.0: + and "pdr" in item[1]["data"]: _write_line_to_file(file_handler, item) logging.info(" Done.")