aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-02-16 10:52:19 +0100
committerTibor Frank <tifrank@cisco.com>2018-02-16 09:53:20 +0000
commit8b019f2a8b2973c813aaaafae0819c4656bb53aa (patch)
tree04fac5e3fd203f1d9e3b9e047c3bffd7ea3c5cc0
parent4df858360aa0e634c2f31d9c32c489e2e97ebb3f (diff)
CSIT-932: Remove outliers form statistical calculations
Change-Id: If9b8eaa4d997ad3516c27befb4a868a948567482 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 79bcdf2e3321ca46c07e6b49a77ce1cf5b513956)
-rw-r--r--resources/tools/presentation/generator_tables.py1
1 files changed, 1 insertions, 0 deletions
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))