From: Ilya Dryomov Date: Fri, 17 Feb 2017 11:56:20 +0000 (+0100) Subject: run: allow using alternate suite repo X-Git-Tag: 1.1.0~459^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=318a6026a58c0492565a359e184a99b09f811ae3;p=teuthology.git run: allow using alternate suite repo Do the same thing we do for ceph repo to make ceph.git commit 1f82b9b9446d ("qa/tasks/workunit: use the suite repo for cloning workunit") work for scheduled jobs. Signed-off-by: Ilya Dryomov --- diff --git a/teuthology/run.py b/teuthology/run.py index 4782efda2c..3addee2270 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -345,6 +345,9 @@ def main(args): ceph_repo = config.get('repo') if ceph_repo: teuth_config.ceph_git_url = ceph_repo + suite_repo = config.get('suite_repo') + if suite_repo: + teuth_config.ceph_qa_suite_git_url = suite_repo config["tasks"] = validate_tasks(config)