X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=379205cbeaebbcae0c9db10b8796f985d87840cd;hp=59059df08eada0bf937a1e0802e18ec1218b5f67;hb=0d53d645a6d78b581e7ad1e257af4f943a52f465;hpb=f12e62b5d43bdc3765b167a17887e2e441e902eb diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 59059df08e..379205cbea 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -183,24 +183,25 @@ def table_performance_improvements(table, input_data): for build in data[job]: try: data_lst.append(float(build[tmpl_item[0]]["throughput"] - ["value"]) / 1000000) + ["value"])) except (KeyError, TypeError): # No data, ignore continue if data_lst: - tbl_item.append({"data": eval(operation)(data_lst)}) + tbl_item.append({"data": (eval(operation)(data_lst)) / + 1000000}) else: tbl_item.append({"data": None}) elif cmd == "operation": operation = args[0] try: - nr1 = tbl_item[int(args[1])]["data"] - nr2 = tbl_item[int(args[2])]["data"] + nr1 = float(tbl_item[int(args[1])]["data"]) + nr2 = float(tbl_item[int(args[2])]["data"]) if nr1 and nr2: tbl_item.append({"data": eval(operation)(nr1, nr2)}) else: tbl_item.append({"data": None}) - except IndexError: + except (IndexError, ValueError, TypeError): logging.error("No data for {0}".format(tbl_item[1]["data"])) tbl_item.append({"data": None}) continue @@ -228,19 +229,19 @@ def table_performance_improvements(table, input_data): for item in tbl_lst: if "ndr_top" in file_name \ and "ndr" in item[1]["data"] \ - and item[-1]["data"] >= 10: + and round(item[-1]["data"], 1) >= 10.0: _write_line_to_file(file_handler, item) elif "pdr_top" in file_name \ and "pdr" in item[1]["data"] \ - and item[-1]["data"] >= 10: + and round(item[-1]["data"], 1) >= 10.0: _write_line_to_file(file_handler, item) elif "ndr_low" in file_name \ and "ndr" in item[1]["data"] \ - and item[-1]["data"] < 10: + and round(item[-1]["data"], 1) < 10.0: _write_line_to_file(file_handler, item) elif "pdr_low" in file_name \ and "pdr" in item[1]["data"] \ - and item[-1]["data"] < 10: + and round(item[-1]["data"], 1) < 10.0: _write_line_to_file(file_handler, item) logging.info(" Done.")