diff options
author | 2018-02-22 16:36:55 +0000 | |
---|---|---|
committer | 2018-02-22 16:36:55 +0000 | |
commit | d701e9737f83ff29faba830df426b5a75c9746b1 (patch) | |
tree | 8e6299dcd2cfcd3d773cc523cb1c5a387d0d9681 /functest/ci/check_deployment.py | |
parent | 01b28068c727b54c34d5b20e3baad4c4e31d7761 (diff) | |
parent | fdbfe10922d09ee3dad407b10be0205082dddce3 (diff) |
Merge "Use constants for Functest config file"
Diffstat (limited to 'functest/ci/check_deployment.py')
-rw-r--r-- | functest/ci/check_deployment.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/functest/ci/check_deployment.py b/functest/ci/check_deployment.py index bf43b537..a475491a 100644 --- a/functest/ci/check_deployment.py +++ b/functest/ci/check_deployment.py @@ -28,6 +28,7 @@ from snaps.openstack.utils import keystone_utils from snaps.openstack.utils import neutron_utils from snaps.openstack.utils import nova_utils +from functest.utils import constants from functest.opnfv_tests.openstack.snaps import snaps_utils __author__ = "Jose Lausuch <jose.lausuch@ericsson.com>" @@ -68,7 +69,7 @@ def get_auth_token(os_creds): class CheckDeployment(object): """ Check deployment class.""" - def __init__(self, rc_file='/home/opnfv/functest/conf/env_file'): + def __init__(self, rc_file=constants.ENV_FILE): self.rc_file = rc_file self.services = ('compute', 'network', 'image') self.os_creds = None |