diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-02-13 11:50:34 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-02-13 14:58:48 +0100 |
commit | 0424a6d98739ac7499c28799570ea8a625c0779c (patch) | |
tree | c5eed980bf32ab82f77da94f26e4fe6ae6cbde44 /functest/cli/commands/cli_env.py | |
parent | 2fbff506d2bece39db007af98c7c5292329b7f31 (diff) |
Remove INSTALLER_IP from Functest
It's mandatory for testcases which are out of Functest.
Change-Id: Ia5f5134334ad9f69d44409d817616fa9033fae95
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/cli/commands/cli_env.py')
-rw-r--r-- | functest/cli/commands/cli_env.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/functest/cli/commands/cli_env.py b/functest/cli/commands/cli_env.py index a5c0e399..f93ef612 100644 --- a/functest/cli/commands/cli_env.py +++ b/functest/cli/commands/cli_env.py @@ -20,8 +20,6 @@ class Env(object): # pylint: disable=too-few-public-methods @staticmethod def show(): install_type = os.environ.get('INSTALLER_TYPE', 'Unknown') - installer_ip = os.environ.get('INSTALLER_IP', 'Unknown') - installer_info = ("%s, %s" % (install_type, installer_ip)) scenario = os.environ.get('DEPLOY_SCENARIO', 'Unknown') node = os.environ.get('NODE_NAME', 'Unknown') build_tag = os.environ.get('BUILD_TAG', None) @@ -29,7 +27,7 @@ class Env(object): # pylint: disable=too-few-public-methods build_tag = build_tag.lstrip( "jenkins-").lstrip("functest").lstrip("-") - env_info = {'INSTALLER': installer_info, + env_info = {'INSTALLER': install_type, 'SCENARIO': scenario, 'POD': node, 'BUILD_TAG': build_tag} |