(self, item: Item)
| 891 | |
| 892 | @hookimpl(wrapper=True) |
| 893 | def pytest_runtest_setup(self, item: Item) -> Generator[None]: |
| 894 | with self.item_capture("setup", item): |
| 895 | return (yield) |
| 896 | |
| 897 | @hookimpl(wrapper=True) |
| 898 | def pytest_runtest_call(self, item: Item) -> Generator[None]: |
nothing calls this directly
no test coverage detected