From 169250f60ccbb1b2f752a7584dcf6e254bd5a873 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 14 Dec 2016 12:43:29 -0700 Subject: [PATCH] Default suite_relpath to 'qa' To reflect the move from ceph-qa-suite.git -> ceph.git Signed-off-by: Zack Cerza --- scripts/suite.py | 1 + teuthology/suite/test/test_init.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/scripts/suite.py b/scripts/suite.py index 205ae36574..c62a0e0d5e 100644 --- a/scripts/suite.py +++ b/scripts/suite.py @@ -64,6 +64,7 @@ Standard arguments: --suite-relpath Look for tasks and suite definitions in this subdirectory of the suite repo. + [default: qa] --suite-branch Use this suite branch instead of the ceph branch --suite-dir Use this alternative directory as-is when diff --git a/teuthology/suite/test/test_init.py b/teuthology/suite/test/test_init.py index 16b07a888d..78a6f21300 100644 --- a/teuthology/suite/test/test_init.py +++ b/teuthology/suite/test/test_init.py @@ -155,6 +155,7 @@ class TestSuiteMain(object): config.suite_verify_ceph_hash = False main(['--suite', suite_name, '--suite-dir', suite_dir, + '--suite-relpath', '', '--throttle', throttle, '--machine-type', machine_type]) m_sleep.assert_called_with(int(throttle)) @@ -179,6 +180,7 @@ class TestSuiteMain(object): config.suite_verify_ceph_hash = True main(['--suite', suite_name, '--suite-dir', suite_dir, + '--suite-relpath', '', '--throttle', throttle, '--machine-type', machine_type]) m_sleep.assert_called_with(int(throttle)) -- 2.39.5