Wrap the given pytestfunct item for tracing support if --trace was given in the command line.
(pyfuncitem)
| 328 | |
| 329 | |
| 330 | def maybe_wrap_pytest_function_for_tracing(pyfuncitem) -> None: |
| 331 | """Wrap the given pytestfunct item for tracing support if --trace was given in |
| 332 | the command line.""" |
| 333 | if pyfuncitem.config.getvalue("trace"): |
| 334 | wrap_pytest_function_for_tracing(pyfuncitem) |
| 335 | |
| 336 | |
| 337 | def _enter_pdb( |