diff options
author | dongwenjuan <dong.wenjuan@zte.com.cn> | 2017-04-13 09:09:41 +0800 |
---|---|---|
committer | dongwenjuan <dong.wenjuan@zte.com.cn> | 2017-05-02 11:01:56 +0800 |
commit | d5918a87f12fdef9bd7408c4554c42606c4896d8 (patch) | |
tree | d6b5ce364ae8a425bd3a538655d14872a9f0b0e9 /tests/config.py | |
parent | 51b2ad855f0dad6527e5ec436f6b29758c21fb80 (diff) |
add image code
JIRA: DOCTOR-93
Change-Id: I6551d5e31799b967ce442cb05a664c0d64a3dcf8
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/config.py')
-rw-r--r-- | tests/config.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/config.py b/tests/config.py index 2a062c22..2288d36e 100644 --- a/tests/config.py +++ b/tests/config.py @@ -8,9 +8,15 @@ ##############################################################################
from oslo_config import cfg
+import image
+import os_clients
+
def list_opts():
- return []
+ return [
+ ('os_clients', os_clients.OPTS),
+ ('image', image.IMAGE_OPTS),
+ ]
def prepare_conf(conf=None):
|