| 1293 | monkeypatch.setenv("READING_REPORT_PDF_MODE", "smart") |
| 1294 | |
| 1295 | class BrokenFetcher: |
| 1296 | @staticmethod |
| 1297 | def get_paper_detail(arxiv_id, timeout=None): |
| 1298 | raise RuntimeError("ssl eof") |
| 1299 | |
| 1300 | monkeypatch.setattr(reading_agent, "_load_arxiv_fetcher", lambda: BrokenFetcher) |
| 1301 |
nothing calls this directly
no outgoing calls
no test coverage detected