(self, session: Session)
| 377 | self._report_status += "not deselecting items." |
| 378 | |
| 379 | def pytest_sessionfinish(self, session: Session) -> None: |
| 380 | config = self.config |
| 381 | if config.getoption("cacheshow") or hasattr(config, "workerinput"): |
| 382 | return |
| 383 | |
| 384 | assert config.cache is not None |
| 385 | saved_lastfailed = config.cache.get("cache/lastfailed", {}) |
| 386 | if saved_lastfailed != self.lastfailed: |
| 387 | config.cache.set("cache/lastfailed", self.lastfailed) |
| 388 | |
| 389 | |
| 390 | class NFPlugin: |