From 84b39c131fccf8eba7f1f8fa0231eeffd0b74894 Mon Sep 17 00:00:00 2001 From: Lukas Ruzicka Date: Jul 10 2019 10:17:59 +0000 Subject: Change fail to soft --- diff --git a/modular_functions.py b/modular_functions.py index a2dda4e..b5953d4 100755 --- a/modular_functions.py +++ b/modular_functions.py @@ -557,7 +557,9 @@ class ModuleTest: self.overall['checkdefaults'] = 'pass' logging.info(f"There were no errors in module stream and profile definitions found.") else: - self.overall['checkdefaults'] = 'fail' + #self.overall['checkdefaults'] = 'fail' + # Until we know exactly how to treat the failures, do not report failure. + self.overall['checkdefaults'] = 'softfail' logging.info(f"There were {len(nodefaults)} problems found in module stream and profile definitions.") def test_all(self):