aboutsummaryrefslogtreecommitdiffstats
path: root/functest/cli/commands/cli_env.py
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2018-02-13 20:36:01 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-13 20:36:01 +0000
commite3299f119c93a57e00d1aaeeb1f7073a1adf7b87 (patch)
treed2d5fe3e3afcb3f86343947957db0b18786f7452 /functest/cli/commands/cli_env.py
parent7ccd4189200f3fc1bf1429ea4fb7e6001bce7803 (diff)
parent0424a6d98739ac7499c28799570ea8a625c0779c (diff)
Merge "Remove INSTALLER_IP from Functest"
Diffstat (limited to 'functest/cli/commands/cli_env.py')
-rw-r--r--functest/cli/commands/cli_env.py4
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}