(self, items: list[nodes.Item])
| 1943 | # Try next super fixture, if any. |
| 1944 | |
| 1945 | def pytest_collection_modifyitems(self, items: list[nodes.Item]) -> None: |
| 1946 | # Separate parametrized setups. |
| 1947 | items[:] = reorder_items(items) |
| 1948 | |
| 1949 | def _register_fixture( |
| 1950 | self, |
nothing calls this directly
no test coverage detected