(item: Item, nextitem: Item | None)
| 113 | |
| 114 | |
| 115 | def pytest_runtest_protocol(item: Item, nextitem: Item | None) -> bool: |
| 116 | ihook = item.ihook |
| 117 | ihook.pytest_runtest_logstart(nodeid=item.nodeid, location=item.location) |
| 118 | runtestprotocol(item, nextitem=nextitem) |
| 119 | ihook.pytest_runtest_logfinish(nodeid=item.nodeid, location=item.location) |
| 120 | return True |
| 121 | |
| 122 | |
| 123 | def runtestprotocol( |
nothing calls this directly
no test coverage detected