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/config.py | |
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/config.py')
-rw-r--r-- | doctor_tests/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doctor_tests/config.py b/doctor_tests/config.py index 273e84d5..dc05c0d8 100644 --- a/doctor_tests/config.py +++ b/doctor_tests/config.py @@ -21,6 +21,7 @@ from doctor_tests import monitor from doctor_tests import os_clients
from doctor_tests import profiler_poc
from doctor_tests import user
+from doctor_tests import scenario
def list_opts():
@@ -36,7 +37,8 @@ def list_opts(): network.OPTS,
instance.OPTS,
alarm.OPTS,
- profiler_poc.OPTS))
+ profiler_poc.OPTS,
+ scenario.OPTS))
]
|