summaryrefslogtreecommitdiffstats
path: root/doctor_tests/scenario/__init__.py
diff options
context:
space:
mode:
authorTomi Juvonen <tomi.juvonen@nokia.com>2018-01-15 04:53:21 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-15 04:53:21 +0000
commit776ad2a555b52a6d435f897a11217d669e88bca8 (patch)
tree4763b533198a220d987143b9f0ed9911a23aaa46 /doctor_tests/scenario/__init__.py
parente172646a5957944bb232eee36bd7596e863b1b5a (diff)
parent183eeb06ff33b7462e5f3f3f53396b1f6f91c651 (diff)
Merge "ability to run maintenance test"
Diffstat (limited to 'doctor_tests/scenario/__init__.py')
-rw-r--r--doctor_tests/scenario/__init__.py9
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),
+]