(self, file: str, info: ErrorInfo)
| 849 | return False |
| 850 | |
| 851 | def report_hidden_errors(self, file: str, info: ErrorInfo) -> None: |
| 852 | message = ( |
| 853 | "(Skipping most remaining errors due to unresolved imports or missing stubs; " |
| 854 | + "fix these first)" |
| 855 | ) |
| 856 | if message in self.only_once_messages: |
| 857 | return |
| 858 | self.only_once_messages.add(message) |
| 859 | self.note_for_info(file, info, message, None, only_once=True) |
| 860 | |
| 861 | def is_ignored_error(self, line: int, info: ErrorInfo, ignores: dict[int, list[str]]) -> bool: |
| 862 | if info.blocker: |
no test coverage detected