(self, item: nodes.Item)
| 859 | |
| 860 | @hookimpl(wrapper=True) |
| 861 | def pytest_runtest_call(self, item: nodes.Item) -> Generator[None]: |
| 862 | self.log_cli_handler.set_when("call") |
| 863 | |
| 864 | with self._runtest_for(item, "call"): |
| 865 | yield |
| 866 | |
| 867 | @hookimpl(wrapper=True) |
| 868 | def pytest_runtest_teardown(self, item: nodes.Item) -> Generator[None]: |
nothing calls this directly
no test coverage detected