(self, item: Item)
| 896 | |
| 897 | @hookimpl(wrapper=True) |
| 898 | def pytest_runtest_call(self, item: Item) -> Generator[None]: |
| 899 | with self.item_capture("call", item): |
| 900 | return (yield) |
| 901 | |
| 902 | @hookimpl(wrapper=True) |
| 903 | def pytest_runtest_teardown(self, item: Item) -> Generator[None]: |
nothing calls this directly
no test coverage detected