aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
Diffstat (limited to 'functest')
-rw-r--r--functest/ci/tier_handler.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/functest/ci/tier_handler.py b/functest/ci/tier_handler.py
index dd3e77ce3..cbabe63bc 100644
--- a/functest/ci/tier_handler.py
+++ b/functest/ci/tier_handler.py
@@ -121,6 +121,9 @@ 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: