Path-sensitive hook proxy used to call pytest hooks.
(self)
| 226 | |
| 227 | @property |
| 228 | def ihook(self) -> pluggy.HookRelay: |
| 229 | """Path-sensitive hook proxy used to call pytest hooks.""" |
| 230 | return self.session.gethookproxy(self.path) |
| 231 | |
| 232 | def __repr__(self) -> str: |
| 233 | return "<{} {}>".format(self.__class__.__name__, getattr(self, "name", None)) |
nothing calls this directly
no test coverage detected