(self, item: Item)
| 901 | |
| 902 | @hookimpl(wrapper=True) |
| 903 | def pytest_runtest_teardown(self, item: Item) -> Generator[None]: |
| 904 | with self.item_capture("teardown", item): |
| 905 | return (yield) |
| 906 | |
| 907 | @hookimpl(tryfirst=True) |
| 908 | def pytest_keyboard_interrupt(self) -> None: |
nothing calls this directly
no test coverage detected