diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-07 14:30:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-07 14:30:03 +0000 |
commit | c31ad6a2bb181cce941c18e008efa0d44a7dc60a (patch) | |
tree | 1c61bc69aa90fa971d21e9ea269b18b0ac6f28a4 /functest/ci/run_tests.py | |
parent | 0d9d218cff8155922e604e3f4787d5d32acacecb (diff) | |
parent | 83a3d18e1d62f5caff94619a33a2ed4a094cf0d9 (diff) |
Merge "delete ft_constants and file functest_constants.py"
Diffstat (limited to 'functest/ci/run_tests.py')
-rwxr-xr-x | functest/ci/run_tests.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index 0e951eff..4a47ba57 100755 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -19,7 +19,6 @@ import sys import functest.ci.generate_report as generate_report import functest.ci.tier_builder as tb import functest.core.testcase_base as testcase_base -import functest.utils.functest_constants as ft_constants import functest.utils.functest_logger as ft_logger import functest.utils.functest_utils as ft_utils import functest.utils.openstack_clean as os_clean @@ -84,16 +83,12 @@ def source_rc_file(): for key, value in os.environ.iteritems(): if re.search("OS_", key): if key == 'OS_AUTH_URL': - ft_constants.OS_AUTH_URL = value CONST.OS_AUTH_URL = value elif key == 'OS_USERNAME': - ft_constants.OS_USERNAME = value CONST.OS_USERNAME = value elif key == 'OS_TENANT_NAME': - ft_constants.OS_TENANT_NAME = value CONST.OS_TENANT_NAME = value elif key == 'OS_PASSWORD': - ft_constants.OS_PASSWORD = value CONST.OS_PASSWORD = value |