From 802fa51dae2516255ff1cd887874fd402def9cb3 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 22 Aug 2013 22:30:13 -0700 Subject: [PATCH] suite: make names a bit more friendly Signed-off-by: Sage Weil --- teuthology/suite.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 9c704e8ebc..637a8a34b0 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) -- 2.39.5