(self, excinfo: ExceptionInfo[BaseException])
| 823 | self.summary_warnings() |
| 824 | |
| 825 | def pytest_keyboard_interrupt(self, excinfo: ExceptionInfo[BaseException]) -> None: |
| 826 | self._keyboardinterrupt_memo = excinfo.getrepr(funcargs=True) |
| 827 | |
| 828 | def pytest_unconfigure(self) -> None: |
| 829 | if self._keyboardinterrupt_memo is not None: |