diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-11-03 08:54:06 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-11-03 08:54:06 +0000 |
commit | 4d95f152cda9c7a44df13025341d3d7d472d57c6 (patch) | |
tree | 1f4331c65eb99a920df8f2d54f023fb73f986dcb /functest/ci | |
parent | 0ccc31406d486d2eebe347f3292a38573d470eb1 (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>
Diffstat (limited to 'functest/ci')
-rw-r--r-- | functest/ci/tier_handler.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/functest/ci/tier_handler.py b/functest/ci/tier_handler.py index cbabe63b..dd3e77ce 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: |