summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinda Wang <wangwulin@huawei.com>2017-11-03 08:54:06 +0000
committerLinda Wang <wangwulin@huawei.com>2017-11-03 14:31:22 +0000
commit068930b5b0a014dd569036f551ae164bbfec8d4d (patch)
tree7aed7de1de7cbdfef2a566430c4fd0ae689adf46
parentb9cf2acb089fb39a3f1f77cf113779cab1acd235 (diff)
Remove the constraint of INSTALLER_TYPE
Revert the patch: https://gerrit.opnfv.org/gerrit/#/c/45167 When run on non-opnfv deployment, there is no such concept of INSTALLER_TYPE. Change-Id: I3d420334c9329f7565cf22a0c314a4ffdb410d36 Signed-off-by: Linda Wang <wangwulin@huawei.com> (cherry picked from commit 4d95f152cda9c7a44df13025341d3d7d472d57c6)
-rw-r--r--functest/ci/tier_handler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/functest/ci/tier_handler.py b/functest/ci/tier_handler.py
index cbabe63bc..dd3e77ce3 100644
--- a/functest/ci/tier_handler.py
+++ b/functest/ci/tier_handler.py
@@ -121,9 +121,6 @@ class TestCase(object):
def is_compatible(self, ci_installer, ci_scenario):
try:
- if (self.is_none(ci_installer) and not
- self.is_none(self.dependency.get_installer())):
- return False
if not self.is_none(ci_installer):
if re.search(self.dependency.get_installer(),
ci_installer) is None: