diff options
author | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2017-01-24 14:43:51 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-02-03 09:53:55 +0100 |
commit | 6626f68e785e61de05bdafee68bafe14f66a78a7 (patch) | |
tree | 27fbf77e7169f9d8f4d7dfabbcd33f6df204267e /functest/opnfv_tests/sdn/odl | |
parent | 03d4b5ba821059c778d40484f190f2358b24a2a8 (diff) |
Add netvirt to odl tests
For the odl test the default odl port is 8080. In netvirt this is the
same as apex.
Change-Id: I949510e4f7fb57bcf8ec01f69f7941c5d55c98e7
Signed-off-by: Nikolas Hermanns <nikolas.hermanns@ericsson.com>
Diffstat (limited to 'functest/opnfv_tests/sdn/odl')
-rwxr-xr-x | functest/opnfv_tests/sdn/odl/odl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/sdn/odl/odl.py b/functest/opnfv_tests/sdn/odl/odl.py index 9502be93..25075957 100755 --- a/functest/opnfv_tests/sdn/odl/odl.py +++ b/functest/opnfv_tests/sdn/odl/odl.py @@ -164,7 +164,7 @@ class ODLTests(testcase_base.TestcaseBase): kwargs['ospassword'] = os.environ['OS_PASSWORD'] if installer_type == 'fuel': kwargs['odlwebport'] = '8282' - elif installer_type == 'apex': + elif installer_type == 'apex' or installer_type == 'netvirt': kwargs['odlip'] = os.environ['SDN_CONTROLLER_IP'] kwargs['odlwebport'] = '8081' kwargs['odlrestconfport'] = '8081' |