aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/ci/run_tests.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-09-05 11:35:05 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2020-09-05 12:25:05 +0200
commit80438763cd13f079c5120ade81f4ebd5650ef861 (patch)
tree46995f18519c4b3966b9b4f43cdb681a7fec99c6 /xtesting/ci/run_tests.py
parentc6ab4fb18e3b69967ca03d275f03b35c0b79555e (diff)
Remove order in testcases.yaml
It's not used and asked for useless configuration data. Change-Id: Ie1713873aa880bed74bc3c9c4c08da5b30ea3bbb Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit 2480a8ed48d232b6395f992fc46d388ba2820872)
Diffstat (limited to 'xtesting/ci/run_tests.py')
-rw-r--r--xtesting/ci/run_tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py
index f981c852..82cbe699 100644
--- a/xtesting/ci/run_tests.py
+++ b/xtesting/ci/run_tests.py
@@ -220,12 +220,11 @@ class Runner(object):
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)])