From: Sage Weil Date: Fri, 23 Aug 2013 05:30:13 +0000 (-0700) Subject: suite: make names a bit more friendly X-Git-Tag: 1.1.0~1925^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=802fa51dae2516255ff1cd887874fd402def9cb3;p=teuthology.git suite: make names a bit more friendly Signed-off-by: Sage Weil --- diff --git a/teuthology/suite.py b/teuthology/suite.py index 9c704e8eb..637a8a34b 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -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)