diff options
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):
|