(
item: Item, call
)
| 342 | |
| 343 | @hookimpl(wrapper=True, tryfirst=True) |
| 344 | def pytest_runtest_makereport( |
| 345 | item: Item, call |
| 346 | ) -> Generator[None, TestReport, TestReport]: |
| 347 | rep = yield |
| 348 | assert rep.when is not None |
| 349 | empty: dict[str, bool] = {} |
| 350 | item.stash.setdefault(tmppath_result_key, empty)[rep.when] = rep.passed |
| 351 | return rep |
nothing calls this directly
no test coverage detected