]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Simplify message counting filtered jobs 843/head
authorZack Cerza <zack@redhat.com>
Wed, 13 Apr 2016 21:33:23 +0000 (15:33 -0600)
committerZack Cerza <zack@redhat.com>
Wed, 13 Apr 2016 21:34:06 +0000 (15:34 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
teuthology/suite.py

index 28267a973d53905debca7bbf1eb2a9f7096458d9..17c6dba382890cb8d3f736210938291209ab57ac 100644 (file)
@@ -732,8 +732,9 @@ def schedule_suite(job_config,
     count = len(jobs_to_schedule)
     missing_count = len(jobs_missing_packages)
     log.info('Suite %s in %s scheduled %d jobs.' % (suite_name, path, count))
-    log.info('Suite %s in %s -- %d jobs were filtered out.' %
-             (suite_name, path, len(configs) - count))
+    log.info('%d/%d jobs were filtered out.',
+             (len(configs) - count),
+             len(configs))
     if missing_count:
         log.warn('Scheduled %d/%d jobs that are missing packages!',
                  missing_count, count)