diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-02-22 16:36:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-22 16:36:55 +0000 |
commit | d701e9737f83ff29faba830df426b5a75c9746b1 (patch) | |
tree | 8e6299dcd2cfcd3d773cc523cb1c5a387d0d9681 /functest/api/resources/v1/creds.py | |
parent | 01b28068c727b54c34d5b20e3baad4c4e31d7761 (diff) | |
parent | fdbfe10922d09ee3dad407b10be0205082dddce3 (diff) |
Merge "Use constants for Functest config file"
Diffstat (limited to 'functest/api/resources/v1/creds.py')
-rw-r--r-- | functest/api/resources/v1/creds.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functest/api/resources/v1/creds.py b/functest/api/resources/v1/creds.py index 25c0fd24..3eae1966 100644 --- a/functest/api/resources/v1/creds.py +++ b/functest/api/resources/v1/creds.py @@ -23,7 +23,7 @@ from functest.api.base import ApiResource from functest.api.common import api_utils from functest.ci import run_tests from functest.cli.commands.cli_os import OpenStack -from functest.utils.constants import CONST +from functest.utils import constants LOGGER = logging.getLogger(__name__) @@ -39,7 +39,7 @@ class V1Creds(ApiResource): endpoint='{0}/credentials'.format(ENDPOINT_CREDS)) def get(self): # pylint: disable=no-self-use """ Get credentials """ - run_tests.Runner.source_envfile(getattr(CONST, 'env_file')) + run_tests.Runner.source_envfile(constants.ENV_FILE) credentials_show = OpenStack.show_credentials() return jsonify(credentials_show) @@ -65,7 +65,7 @@ class V1Creds(ApiResource): lines = ['export {}={}\n'.format(k, v) for k, v in openrc_vars.items()] - rc_file = getattr(CONST, 'env_file') + rc_file = constants.ENV_FILE with open(rc_file, 'w') as creds_file: creds_file.writelines(lines) |