mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1223364 - talos --print-suites should list the tests associated to each suite. r=jmaher
This commit is contained in:
parent
1a62fde7f0
commit
fadd089b9b
@ -39,8 +39,11 @@ class _ListSuite(_StopAction):
|
||||
def __call__(self, parser, namespace, values, option_string=None):
|
||||
from talos.config import suites_conf
|
||||
print 'Available suites:'
|
||||
for name in suites_conf():
|
||||
print ' ', name
|
||||
conf = suites_conf()
|
||||
max_suite_name = max([len(s) for s in conf])
|
||||
pattern = " %%-%ds (%%s)" % max_suite_name
|
||||
for name in conf:
|
||||
print pattern % (name, ':'.join(conf[name]['tests']))
|
||||
print
|
||||
parser.exit()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user