(self)
| 201 | return None |
| 202 | |
| 203 | def pytest_sessionfinish(self) -> None: |
| 204 | if hasattr(self.config, "workerinput"): |
| 205 | # Do not update cache if this process is a xdist worker to prevent |
| 206 | # race conditions (#10641). |
| 207 | return |
| 208 | self.cached_info.update_date_to_now() |
| 209 | self.cache.set(STEPWISE_CACHE_DIR, dataclasses.asdict(self.cached_info)) |
nothing calls this directly
no test coverage detected