diff options
author | Ryota Mibu <r-mibu@cq.jp.nec.com> | 2017-08-09 02:46:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-09 02:46:52 +0000 |
commit | db6d9cdcb37fee810fdf59e4d96b9a5139b5c8b7 (patch) | |
tree | 03e619c4cc05ff4b3523fce39b642b4ac92fbc88 /tests/installer/__init__.py | |
parent | a126fdaac45c8b0459763c89d4e69ac7e7d5172d (diff) | |
parent | 5a1c7a939cef64609c398779d83e4c0bdae83083 (diff) |
Merge "refactor apex installer"
Diffstat (limited to 'tests/installer/__init__.py')
-rw-r--r-- | tests/installer/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/installer/__init__.py b/tests/installer/__init__.py index 491543c8..bb0e452d 100644 --- a/tests/installer/__init__.py +++ b/tests/installer/__init__.py @@ -14,7 +14,7 @@ from oslo_utils import importutils OPTS = [ cfg.StrOpt('type', default=os.environ.get('INSTALLER_TYPE', 'local'), - choices=['local'], + choices=['local', 'apex'], help='the type of installer', required=True), cfg.StrOpt('ip', @@ -28,7 +28,8 @@ OPTS = [ _installer_name_class_mapping = { - 'local': 'installer.local.LocalInstaller' + 'local': 'installer.local.LocalInstaller', + 'apex': 'installer.apex.ApexInstaller' } |