(self, items: Iterable[nodes.Item])
| 419 | self.cached_nodeids.update(item.nodeid for item in items) |
| 420 | |
| 421 | def _get_increasing_order(self, items: Iterable[nodes.Item]) -> List[nodes.Item]: |
| 422 | return sorted(items, key=lambda item: item.path.stat().st_mtime, reverse=True) # type: ignore[no-any-return] |
| 423 | |
| 424 | def pytest_sessionfinish(self) -> None: |
| 425 | config = self.config |
no outgoing calls
no test coverage detected