(session)
| 27 | |
| 28 | |
| 29 | def pytest_sessionstart(session) -> None: |
| 30 | force = os.getenv("DOCLING_PARSE_TEST_DATA_FORCE_DOWNLOAD", "").lower() in { |
| 31 | "1", |
| 32 | "true", |
| 33 | "yes", |
| 34 | } |
| 35 | ensure_test_data_downloaded(force=force) |
nothing calls this directly
no test coverage detected