Hunter release notes update
[doctor.git] / doctor_tests / config.py
index 273e84d..cea1f0c 100644 (file)
@@ -11,6 +11,8 @@ import itertools
 from oslo_config import cfg\r
 \r
 from doctor_tests import alarm\r
+from doctor_tests import admin_tool\r
+from doctor_tests import app_manager\r
 from doctor_tests import consumer\r
 from doctor_tests import image\r
 from doctor_tests import instance\r
@@ -21,6 +23,7 @@ from doctor_tests import monitor
 from doctor_tests import os_clients\r
 from doctor_tests import profiler_poc\r
 from doctor_tests import user\r
+from doctor_tests import scenario\r
 \r
 \r
 def list_opts():\r
@@ -29,6 +32,8 @@ def list_opts():
         ('monitor', monitor.OPTS),\r
         ('inspector', inspector.OPTS),\r
         ('consumer', consumer.OPTS),\r
+        ('admin_tool', admin_tool.OPTS),\r
+        ('app_manager', app_manager.OPTS),\r
         ('DEFAULT', itertools.chain(\r
             os_clients.OPTS,\r
             image.OPTS,\r
@@ -36,7 +41,8 @@ def list_opts():
             network.OPTS,\r
             instance.OPTS,\r
             alarm.OPTS,\r
-            profiler_poc.OPTS))\r
+            profiler_poc.OPTS,\r
+            scenario.OPTS))\r
     ]\r
 \r
 \r