summaryrefslogtreecommitdiffstats
path: root/tests/config.py
diff options
context:
space:
mode:
authordongwenjuan <dong.wenjuan@zte.com.cn>2017-05-10 15:21:38 +0800
committerwenjuan dong <dong.wenjuan@zte.com.cn>2017-07-07 06:18:42 +0000
commit183dee7dc0d1c5086ad5d919b7eba955d1d011e9 (patch)
tree79a1031e47f68a55df6a4e6934f442f9a706b309 /tests/config.py
parent2e35513b691b0319b96182c5d9c39e4ab1a97552 (diff)
Add create instances
JIRA: DOCTOR-93 Change-Id: I7645c1cc0c76ff86b9fbcc01c19038469fc9b9b4 Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/config.py')
-rw-r--r--tests/config.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/config.py b/tests/config.py
index 3cacd0a2..99f335f2 100644
--- a/tests/config.py
+++ b/tests/config.py
@@ -11,6 +11,8 @@ import itertools
from oslo_config import cfg
import image
+import instance
+import network
import os_clients
import user
@@ -20,7 +22,9 @@ def list_opts():
('DEFAULT', itertools.chain(
os_clients.OPTS,
image.OPTS,
- user.OPTS))
+ user.OPTS,
+ network.OPTS,
+ instance.OPTS))
]