(self, items: List[nodes.Item])
| 1595 | # Try next super fixture, if any. |
| 1596 | |
| 1597 | def pytest_collection_modifyitems(self, items: List[nodes.Item]) -> None: |
| 1598 | # Separate parametrized setups. |
| 1599 | items[:] = reorder_items(items) |
| 1600 | |
| 1601 | def parsefactories( |
| 1602 | self, node_or_obj, nodeid=NOTSET, unittest: bool = False |
nothing calls this directly
no test coverage detected