def checkResults(self, log, conds): if os.path.isfile (log): with open(log) as f: example_logparser.checkLogs(self.error_conditions_path, f) with open(log) as f: example_logparser.checkLogs(conds, f)
def checkResults(self, log, conds): if os.path.isfile(log): with open(log) as f: example_logparser.checkLogs(self.error_conditions_path, f) with open(log) as f: example_logparser.checkLogs(conds, f)
def checkOSPLInfoLog(self, log): with open(log) as f: example_logparser.checkLogs(self.ospl_info_conditions_path, f)