(session: Session)
| 46 | |
| 47 | |
| 48 | def pytest_sessionfinish(session: Session) -> None: |
| 49 | if not session.config.getoption("stepwise"): |
| 50 | assert session.config.cache is not None |
| 51 | # Clear the list of failing tests if the plugin is not active. |
| 52 | session.config.cache.set(STEPWISE_CACHE_DIR, []) |
| 53 | |
| 54 | |
| 55 | class StepwisePlugin: |