diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-07 12:57:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-07 12:57:48 +0000 |
commit | 77287a7167fd74cd80a97828834134b7b75e65c1 (patch) | |
tree | 68d74cf66a256bf630b51c8346d0f6e16be48bd4 /functest/opnfv_tests | |
parent | ccb79f369e484832deb99b989fada30c6b730697 (diff) | |
parent | 3d5d2cb57dfa09d5856e5168029f5491d9266ca6 (diff) |
Merge "Aarch64 adaption in functest for snaps healthcheck"
Diffstat (limited to 'functest/opnfv_tests')
-rw-r--r-- | functest/opnfv_tests/openstack/snaps/health_check.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/snaps/health_check.py b/functest/opnfv_tests/openstack/snaps/health_check.py index 993c1000..c19bf39c 100644 --- a/functest/opnfv_tests/openstack/snaps/health_check.py +++ b/functest/opnfv_tests/openstack/snaps/health_check.py @@ -28,7 +28,12 @@ class HealthCheck(PyTestSuiteRunner): self.case_name = "snaps_health_check" ext_net_name = snaps_utils.get_ext_net_name() + image_custom_config = None + if hasattr(CONST, 'snaps_health_check'): + image_custom_config = CONST.snaps_health_check + self.suite.addTest( OSIntegrationTestCase.parameterize( SimpleHealthCheck, CONST.openstack_creds, ext_net_name, - use_keystone=CONST.snaps_use_keystone)) + use_keystone=CONST.snaps_use_keystone, + image_metadata=image_custom_config)) |