diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-02-16 10:52:19 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-02-16 10:52:19 +0100 |
commit | 79bcdf2e3321ca46c07e6b49a77ce1cf5b513956 (patch) | |
tree | 65fa913dd729dd795ee8f2b6d30eb276871bdd45 | |
parent | a0918a2c7112621563f14ba06a7aee3eaa3ac711 (diff) |
CSIT-932: Remove outliers form statistical calculations
Change-Id: If9b8eaa4d997ad3516c27befb4a868a948567482
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-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)) |