diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-02-16 10:52:19 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-02-16 09:53:20 +0000 |
commit | 8b019f2a8b2973c813aaaafae0819c4656bb53aa (patch) | |
tree | 04fac5e3fd203f1d9e3b9e047c3bffd7ea3c5cc0 /resources | |
parent | 4df858360aa0e634c2f31d9c32c489e2e97ebb3f (diff) |
CSIT-932: Remove outliers form statistical calculations
Change-Id: If9b8eaa4d997ad3516c27befb4a868a948567482
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 79bcdf2e3321ca46c07e6b49a77ce1cf5b513956)
Diffstat (limited to 'resources')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 1 |
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)) |