diff options
author | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-01-15 04:53:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-01-15 04:53:21 +0000 |
commit | 776ad2a555b52a6d435f897a11217d669e88bca8 (patch) | |
tree | 4763b533198a220d987143b9f0ed9911a23aaa46 /doctor_tests/scenario | |
parent | e172646a5957944bb232eee36bd7596e863b1b5a (diff) | |
parent | 183eeb06ff33b7462e5f3f3f53396b1f6f91c651 (diff) |
Merge "ability to run maintenance test"
Diffstat (limited to 'doctor_tests/scenario')
-rw-r--r-- | doctor_tests/scenario/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doctor_tests/scenario/__init__.py b/doctor_tests/scenario/__init__.py index 48893ae6..9e7cd11d 100644 --- a/doctor_tests/scenario/__init__.py +++ b/doctor_tests/scenario/__init__.py @@ -6,3 +6,12 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +from oslo_config import cfg + + +OPTS = [ + cfg.StrOpt('test_case', + default='all', + help='the name of test case', + required=False), +] |