(config)
| 1470 | |
| 1471 | |
| 1472 | def show_fixtures_per_test(config): |
| 1473 | from _pytest.main import wrap_session |
| 1474 | |
| 1475 | return wrap_session(config, _show_fixtures_per_test) |
| 1476 | |
| 1477 | |
| 1478 | def _show_fixtures_per_test(config: Config, session: Session) -> None: |
no test coverage detected