]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
suite: be verbose about how many jobs we generate
authorSage Weil <sage@inktank.com>
Fri, 13 Sep 2013 15:39:13 +0000 (08:39 -0700)
committerSage Weil <sage@inktank.com>
Fri, 13 Sep 2013 15:39:13 +0000 (08:39 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/suite.py

index e1ccc53c360fcb9ad097b5dc0e078736fc070aed..125fd91cfff4addf4eb5d7ec38312fea9b5d859d 100644 (file)
@@ -123,9 +123,12 @@ combination, and will override anything in the suite.
         for collection in args.collections
         ]
 
+    num_jobs = 0
     for collection, collection_name in sorted(collections):
-        log.info('Collection %s in %s' % (collection_name, collection))
+        log.debug('Collection %s in %s' % (collection_name, collection))
         configs = [(combine_path(collection_name, item[0]), item[1]) for item in build_matrix(collection)]
+        log.info('Collection %s in %s generated %d jobs' % (collection_name, collection, len(configs)))
+        num_jobs + len(configs)
 
         arch = get_arch(args.config)
         machine_type = get_machine_type(args.config)