mirror of
https://github.com/ceph/ceph
synced 2025-01-19 09:32:00 +00:00
suite: make names a bit more friendly
Signed-off-by: Sage Weil <sage@inktank.com>
This commit is contained in:
parent
8894ff6b9f
commit
802fa51dae
@ -143,10 +143,12 @@ combination, and will override anything in the suite.
|
||||
arch = get_arch(args.config)
|
||||
machine_type = get_machine_type(args.config)
|
||||
for configs in itertools.product(*facet_configs):
|
||||
description = 'collection:%s ' % (collection_name);
|
||||
description += ' '.join('{facet}:{name}'.format(
|
||||
facet=facet, name=name)
|
||||
for facet, name, path in configs)
|
||||
description = '%s/{' % (collection_name);
|
||||
description += ' '.join(
|
||||
'{facet}/{name}'.format(facet=facet, name=name)
|
||||
for facet, name, path in configs
|
||||
)
|
||||
description += '}'
|
||||
os_type = get_os_type(configs)
|
||||
exclude_arch = get_exclude_arch(configs)
|
||||
exclude_os_type = get_exclude_os_type(configs)
|
||||
|
Loading…
Reference in New Issue
Block a user