@@ -83,7 +83,6 @@ def test_create_ome_zarr_fail(tmp_path: Path, zenodo_images: str):
8383 # Create zarr structure
8484 with pytest .raises (ValueError ):
8585 _ = cellvoyager_to_ome_zarr_init (
86- zarr_urls = [],
8786 zarr_dir = zarr_dir ,
8887 image_dirs = [image_dir ],
8988 allowed_channels = tmp_allowed_channels ,
@@ -104,7 +103,6 @@ def test_create_ome_zarr_no_images(
104103 """
105104 with pytest .raises (ValueError ):
106105 cellvoyager_to_ome_zarr_init (
107- zarr_urls = [],
108106 zarr_dir = str (tmp_path / "output" ),
109107 image_dirs = [zenodo_images ],
110108 allowed_channels = allowed_channels ,
@@ -115,7 +113,6 @@ def test_create_ome_zarr_no_images(
115113 )
116114 with pytest .raises (ValueError ):
117115 cellvoyager_to_ome_zarr_init (
118- zarr_urls = [],
119116 zarr_dir = str (tmp_path / "output" ),
120117 image_dirs = [zenodo_images ],
121118 allowed_channels = allowed_channels ,
@@ -155,7 +152,6 @@ def test_yokogawa_to_ome_zarr(
155152
156153 # Create zarr structure
157154 parallelization_list = cellvoyager_to_ome_zarr_init (
158- zarr_urls = [],
159155 zarr_dir = str (output_path ),
160156 image_dirs = [str (img_path )],
161157 allowed_channels = allowed_channels ,
@@ -212,7 +208,6 @@ def test_yokogawa_to_ome_zarr(
212208
213209 # Re-run (with overwrite=True for the init task)
214210 parallelization_list = cellvoyager_to_ome_zarr_init (
215- zarr_urls = [],
216211 zarr_dir = str (output_path ),
217212 image_dirs = [str (img_path )],
218213 allowed_channels = allowed_channels ,
@@ -232,7 +227,6 @@ def test_yokogawa_to_ome_zarr(
232227 # Re-run (with overwrite=False for the init task) and fail
233228 with pytest .raises (OverwriteNotAllowedError ):
234229 cellvoyager_to_ome_zarr_init (
235- zarr_urls = [],
236230 zarr_dir = str (output_path ),
237231 image_dirs = [str (img_path )],
238232 allowed_channels = allowed_channels ,
@@ -253,7 +247,6 @@ def test_2D_cellvoyager_to_ome_zarr(
253247
254248 # Create zarr structure
255249 parallelization_list = cellvoyager_to_ome_zarr_init (
256- zarr_urls = [],
257250 zarr_dir = str (output_path ),
258251 image_dirs = [zenodo_images ],
259252 allowed_channels = allowed_channels ,
@@ -484,7 +477,6 @@ def test_MIP_subset_of_images(
484477
485478 # Create zarr structure
486479 parallelization_list = cellvoyager_to_ome_zarr_init (
487- zarr_urls = [],
488480 zarr_dir = str (zarr_dir ),
489481 image_dirs = [zenodo_images ],
490482 allowed_channels = allowed_channels ,
@@ -554,7 +546,6 @@ def test_illumination_correction(
554546
555547 # Create zarr structure
556548 parallelization_list = cellvoyager_to_ome_zarr_init (
557- zarr_urls = [],
558549 zarr_dir = str (zarr_dir ),
559550 image_dirs = [str (img_path )],
560551 image_extension = "png" ,
@@ -606,7 +597,6 @@ def test_yokogawa_to_ome_zarr_multiplate(
606597
607598 # Create zarr structure
608599 parallelization_list = cellvoyager_to_ome_zarr_init (
609- zarr_urls = [],
610600 zarr_dir = str (output_path ),
611601 image_dirs = [img_path_1 , img_path_2 ],
612602 allowed_channels = allowed_channels ,
@@ -671,7 +661,6 @@ def test_cellvoyager_converter_exclusion_patterns(
671661
672662 # Create zarr structure
673663 parallelization_list = cellvoyager_to_ome_zarr_init (
674- zarr_urls = [],
675664 zarr_dir = str (output_path ),
676665 image_dirs = [zenodo_images ],
677666 allowed_channels = allowed_channels ,
0 commit comments