From 318a6026a58c0492565a359e184a99b09f811ae3 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Fri, 17 Feb 2017 12:56:20 +0100 Subject: [PATCH] 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 --- teuthology/run.py | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.39.5