From: Tibor Frank Date: Fri, 16 Feb 2018 09:52:19 +0000 (+0100) Subject: CSIT-932: Remove outliers form statistical calculations X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=79bcdf2e3321ca46c07e6b49a77ce1cf5b513956;ds=sidebyside CSIT-932: Remove outliers form statistical calculations Change-Id: If9b8eaa4d997ad3516c27befb4a868a948567482 Signed-off-by: Tibor Frank --- diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index dc61adbfe2..f55c41ecf7 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -467,6 +467,7 @@ def table_performance_comparison(table, input_data): txt_table = prettytable.PrettyTable(row) else: txt_table.add_row(row) + txt_table.align["Test case"] = "l" with open(txt_name, "w") as txt_file: txt_file.write(str(txt_table))