(self)
| 121 | |
| 122 | |
| 123 | def parse_log_file(self): |
| 124 | with open(self.logfile) as f: |
| 125 | |
| 126 | PipeEach(f.readlines()).through_functions( |
| 127 | self.check_for_exe_boundaries, |
| 128 | self.check_for_testcase_boundaries, |
| 129 | self.check_test_result, |
| 130 | self.should_pass, |
| 131 | self.append_to_comment |
| 132 | ) |
| 133 | |
| 134 | |
| 135 | def should_pass(self, line): |
no test coverage detected