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/config.py | |
parent | e172646a5957944bb232eee36bd7596e863b1b5a (diff) | |
parent | 183eeb06ff33b7462e5f3f3f53396b1f6f91c651 (diff) |
Merge "ability to run maintenance test"
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))
]
|