()
| 21 | |
| 22 | @pytest.fixture(scope="session") |
| 23 | def example_lib() -> LeanLibrary: |
| 24 | add_lean_lib_to_dyld_path() |
| 25 | return LeanLibrary.from_lake( |
| 26 | Path(__file__).parent / "lean", |
| 27 | "TestLib", |
| 28 | build=True, |
| 29 | ) |
| 30 | |
| 31 | |
| 32 | def pytest_collection_modifyitems(config, items): |
nothing calls this directly
no test coverage detected