()
| 35 | |
| 36 | |
| 37 | def create_test_options() -> pycolmap.IncrementalPipelineOptions: |
| 38 | options = pycolmap.IncrementalPipelineOptions() |
| 39 | # Use single thread for deterministic behavior. |
| 40 | options.num_threads = 1 |
| 41 | return options |
| 42 | |
| 43 | |
| 44 | def test_without_noise(tmp_path: Path) -> None: |
no outgoing calls
no test coverage detected