diff options
Diffstat (limited to 'xtesting/ci/run_tests.py')
-rw-r--r-- | xtesting/ci/run_tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index f96bd885..ea606bd4 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -219,12 +219,11 @@ class Runner(): tiers_to_run = [] msg = prettytable.PrettyTable( header_style='upper', padding_width=5, - field_names=['tiers', 'order', 'description', - 'testcases']) + field_names=['tiers', 'description', 'testcases']) for tier in self.tiers.get_tiers(): if tier.get_tests(): tiers_to_run.append(tier) - msg.add_row([tier.get_name(), tier.get_order(), + msg.add_row([tier.get_name(), textwrap.fill(tier.description, width=40), textwrap.fill(' '.join([str(x.get_name( )) for x in tier.get_tests()]), width=40)]) |