(self, excinfo: ExceptionInfo[BaseException])
| 1009 | self.summary_warnings() |
| 1010 | |
| 1011 | def pytest_keyboard_interrupt(self, excinfo: ExceptionInfo[BaseException]) -> None: |
| 1012 | self._keyboardinterrupt_memo = excinfo.getrepr(funcargs=True) |
| 1013 | |
| 1014 | def pytest_unconfigure(self) -> None: |
| 1015 | if self._keyboardinterrupt_memo is not None: |