diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-08-28 08:26:08 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-08-29 03:47:02 +0000 |
commit | 85ed13e38245eee2c957e76cd6834aa6668d6293 (patch) | |
tree | 72ae5bb91ec0fc6d97d50345a39beb02481799ff /functest/utils/functest_utils.py | |
parent | cb239a2a5ec46086ce8c046e2db4cb7eb7b18181 (diff) |
Remove get_installer_type
JIRA: FUNCTEST-763
Change-Id: Ib05f699063393eb6eaa9f559854aca50b77aead3
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/utils/functest_utils.py')
-rw-r--r-- | functest/utils/functest_utils.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py index a7c61ce1..e4062373 100644 --- a/functest/utils/functest_utils.py +++ b/functest/utils/functest_utils.py @@ -68,19 +68,6 @@ def download_url(url, dest_path): # CI UTILS # # ----------------------------------------------------------- -def get_installer_type(): - """ - Get installer type (fuel, apex, joid, compass) - """ - try: - installer = os.environ['INSTALLER_TYPE'] - except KeyError: - logger.error("Impossible to retrieve the installer type") - installer = "Unknown_installer" - - return installer - - def get_version(): """ Get version |