diff options
author | dongwenjuan <dong.wenjuan@zte.com.cn> | 2017-04-12 10:46:39 +0800 |
---|---|---|
committer | wenjuan dong <dong.wenjuan@zte.com.cn> | 2017-07-27 02:00:34 +0000 |
commit | dbd84d95163fb492962ebacdea7bc2a89a8b56f9 (patch) | |
tree | 443726a628d8b045e9458909158b04558edaba98 /tests/config.py | |
parent | 3e0300e8f9695348aa4564f87a23ac3c0cf737ff (diff) |
refactor the monitor
JIRA: DOCTOR-99
Change-Id: I1831d329ffe80435532678fcb23d54f310422ce8
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/config.py')
-rw-r--r-- | tests/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/config.py b/tests/config.py index 969d829f..88910f6d 100644 --- a/tests/config.py +++ b/tests/config.py @@ -16,14 +16,16 @@ import image import instance
import network
import inspector
+import monitor
import os_clients
import user
def list_opts():
return [
- ('consumer', consumer.OPTS),
+ ('monitor', monitor.OPTS),
('inspector', inspector.OPTS),
+ ('consumer', consumer.OPTS),
('DEFAULT', itertools.chain(
os_clients.OPTS,
image.OPTS,
|