(item: Item)
| 84 | |
| 85 | @pytest.hookimpl(wrapper=True, tryfirst=True) |
| 86 | def pytest_runtest_protocol(item: Item) -> Generator[None, object, object]: |
| 87 | with catch_warnings_for_item( |
| 88 | config=item.config, ihook=item.ihook, when="runtest", item=item |
| 89 | ): |
| 90 | return (yield) |
| 91 | |
| 92 | |
| 93 | @pytest.hookimpl(wrapper=True, tryfirst=True) |
nothing calls this directly
no test coverage detected