(self, line: str)
| 77 | self._ignored_lognos.add(l) |
| 78 | |
| 79 | def _is_ignored(self, line: str) -> bool: |
| 80 | if self._lookup_matches(line, self._ignored_matches): |
| 81 | return True |
| 82 | if self._lookup_lognos(line, self._ignored_lognos): |
| 83 | return True |
| 84 | return False |
| 85 | |
| 86 | def ignore_recent(self, lognos: List[str] = [], matches: List[str] = []): |
| 87 | """After a test case triggered errors/warnings on purpose, add |
no test coverage detected