Run all daily testcases if CI_LOOP is unset
[functest.git] / functest / ci / run_tests.py
index 36b52fd..ff38720 100644 (file)
@@ -96,7 +96,11 @@ class Runner(object):
     @staticmethod
     def source_envfile(rc_file=ENV_FILE):
         """Source the env file passed as arg"""
+        if not os.path.isfile(rc_file):
+            LOGGER.debug("No env file %s found", rc_file)
+            return
         with open(rc_file, "r") as rcfd:
+            LOGGER.info("Sourcing env file %s", rc_file)
             for line in rcfd:
                 var = (line.rstrip('"\n').replace('export ', '').split(
                     "=") if re.search(r'(.*)=(.*)', line) else None)
@@ -203,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(),