(ext, gz_files, **kwargs)
| 1873 | ] |
| 1874 | |
| 1875 | def _fake_run(ext, gz_files, **kwargs): |
| 1876 | files = left_files if mock_run.call_count == 1 else right_files |
| 1877 | on_result = kwargs.get("on_result") |
| 1878 | if on_result: |
| 1879 | for f in files: |
| 1880 | on_result(f.gz_path, f) |
| 1881 | return BatchResult() |
| 1882 | |
| 1883 | mock_run.side_effect = _fake_run |
| 1884 |
nothing calls this directly
no test coverage detected