(self, pytester: Pytester)
| 696 | assert "rerun previous" in result.stdout.str() |
| 697 | |
| 698 | def get_cached_last_failed(self, pytester: Pytester) -> list[str]: |
| 699 | config = pytester.parseconfigure() |
| 700 | assert config.cache is not None |
| 701 | return sorted(config.cache.get("cache/lastfailed", {})) |
| 702 | |
| 703 | def test_cache_cumulative(self, pytester: Pytester) -> None: |
| 704 | """Test workflow where user fixes errors gradually file by file using --lf.""" |
no test coverage detected