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 669cd6b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions napari_ome_zarr/_tests/test_reader.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import glob
import sys
from pathlib import Path

Expand Down Expand Up @@ -32,6 +33,8 @@ 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))
print(path_str)
print(list(glob.glob("*", root_dir=path_str)))
reader = napari_get_reader(path_str)
results = reader(path_str)
assert len(results) == 2
Expand Down

0 comments on commit 669cd6b

Please sign in to comment.