diff options
author | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-01-03 08:34:37 +0200 |
---|---|---|
committer | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-01-12 08:59:37 +0200 |
commit | 183eeb06ff33b7462e5f3f3f53396b1f6f91c651 (patch) | |
tree | 11d493a06a9944927c85577a2cbab98c6d1f0b15 /doctor_tests/scenario | |
parent | 9fd701278bf7d8c5b9451491bcb1a92580adc780 (diff) |
ability to run maintenance test
JIRA: DOCTOR-119
Change-Id: I98e556fba30eb7ba244cb9d0d88a9e95c39193ff
Signed-off-by: Tomi Juvonen <tomi.juvonen@nokia.com>
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), +] |