(self, items: Iterable[nodes.Item])
| 455 | return res |
| 456 | |
| 457 | def _get_increasing_order(self, items: Iterable[nodes.Item]) -> list[nodes.Item]: |
| 458 | return sorted(items, key=lambda item: item.path.stat().st_mtime, reverse=True) |
| 459 | |
| 460 | def pytest_sessionfinish(self) -> None: |
| 461 | config = self.config |
no test coverage detected