| 302 | |
| 303 | |
| 304 | class PdbTrace: |
| 305 | @hookimpl(wrapper=True) |
| 306 | def pytest_pyfunc_call(self, pyfuncitem) -> Generator[None, object, object]: |
| 307 | wrap_pytest_function_for_tracing(pyfuncitem) |
| 308 | return (yield) |
| 309 | |
| 310 | |
| 311 | def wrap_pytest_function_for_tracing(pyfuncitem) -> None: |