diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-02-13 20:36:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-13 20:36:01 +0000 |
commit | e3299f119c93a57e00d1aaeeb1f7073a1adf7b87 (patch) | |
tree | d2d5fe3e3afcb3f86343947957db0b18786f7452 /functest/cli/commands/cli_env.py | |
parent | 7ccd4189200f3fc1bf1429ea4fb7e6001bce7803 (diff) | |
parent | 0424a6d98739ac7499c28799570ea8a625c0779c (diff) |
Merge "Remove INSTALLER_IP from Functest"
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} |