From 2eb34d48418b0a99309d9b80498b90390520002c Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 13 Apr 2016 15:33:23 -0600 Subject: [PATCH] Simplify message counting filtered jobs Signed-off-by: Zack Cerza --- teuthology/suite.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 28267a973..17c6dba38 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -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) -- 2.47.3