Skip to content

Commit

Permalink
Add some debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed Jun 6, 2024
1 parent edce9f8 commit ec3af1b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion napari_ome_zarr/_tests/test_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ def test_get_reader_hit(self):

@pytest.mark.parametrize("path", ["path_3d", "path_2d"])
def test_reader(self, path):
path_str = str(getattr(self, path))
path: Path = getattr(self, path)
path_str = str(path)
print(path_str)
print(list(path.glob("*")))
reader = napari_get_reader(path_str)
assert reader is not None
results = reader(path_str)
assert len(results) == 2
image, label = results
Expand Down

0 comments on commit ec3af1b

Please sign in to comment.