(item: Item, nextitem: Optional[Item])
| 108 | |
| 109 | |
| 110 | def pytest_runtest_protocol(item: Item, nextitem: Optional[Item]) -> bool: |
| 111 | ihook = item.ihook |
| 112 | ihook.pytest_runtest_logstart(nodeid=item.nodeid, location=item.location) |
| 113 | runtestprotocol(item, nextitem=nextitem) |
| 114 | ihook.pytest_runtest_logfinish(nodeid=item.nodeid, location=item.location) |
| 115 | return True |
| 116 | |
| 117 | |
| 118 | def runtestprotocol( |
nothing calls this directly
no test coverage detected