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