]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
suite: make names a bit more friendly
authorSage Weil <sage@inktank.com>
Fri, 23 Aug 2013 05:30:13 +0000 (22:30 -0700)
committerSage Weil <sage@inktank.com>
Wed, 28 Aug 2013 18:40:41 +0000 (11:40 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/suite.py

index 9c704e8ebc442d2b71a514c8065626b44fa40ff2..637a8a34b045fbff2e5e3c7b37a1dd7f1c1567e7 100644 (file)
@@ -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)