def run(self): if not self.can_run(): Logger.i("Generator '{0}' skipped".format(self.get_name())) return # create the output folder output_path = self.get_output_path() FileUtil.prepare_output_path(output_path) # process all records found self.process_record_list() # finished Logger.s("Generator '{0}' finished".format(self.get_name()))
def test_information(self): Logger.i("test_information") self.assertTrue(True)