aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--functest/ci/run_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py
index 8c0b11b1b..ff38720d6 100644
--- a/functest/ci/run_tests.py
+++ b/functest/ci/run_tests.py
@@ -207,8 +207,8 @@ class Runner(object):
field_names=['tiers', 'order', 'CI Loop', 'description',
'testcases'])
for tier in self.tiers.get_tiers():
- ci_loop = os.environ.get('CI_LOOP', None)
- if (tier.get_tests() and ci_loop and
+ ci_loop = os.environ.get('CI_LOOP', 'daily')
+ if (tier.get_tests() and
re.search(ci_loop, tier.get_ci_loop()) is not None):
tiers_to_run.append(tier)
msg.add_row([tier.get_name(), tier.get_order(),