(self, pyfuncitem)
| 303 | class PdbTrace: |
| 304 | @hookimpl(hookwrapper=True) |
| 305 | def pytest_pyfunc_call(self, pyfuncitem) -> Generator[None, None, None]: |
| 306 | wrap_pytest_function_for_tracing(pyfuncitem) |
| 307 | yield |
| 308 | |
| 309 | |
| 310 | def wrap_pytest_function_for_tracing(pyfuncitem): |
no test coverage detected