From: Zack Cerza Date: Wed, 14 Dec 2016 19:43:29 +0000 (-0700) Subject: Default suite_relpath to 'qa' X-Git-Tag: 1.1.0~482^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=169250f60ccbb1b2f752a7584dcf6e254bd5a873;p=teuthology.git Default suite_relpath to 'qa' To reflect the move from ceph-qa-suite.git -> ceph.git Signed-off-by: Zack Cerza --- diff --git a/scripts/suite.py b/scripts/suite.py index 205ae3657..c62a0e0d5 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 16b07a888..78a6f2130 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))