Skip to content

Commit f5c3293

Browse files
committed
name test file test.empty.h5 to ignore it
1 parent 7b1077d commit f5c3293

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

anndata/tests/test_readwrite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,6 @@ def test_write_csv(typ):
142142
])
143143
def test_readwrite_hdf5_empty(read, write):
144144
adata = ad.AnnData(uns=dict(empty=np.array([], dtype=float)))
145-
write(adata, HERE / 'empty.h5')
146-
ad_read = read(HERE / 'empty.h5')
145+
write(adata, HERE / 'test.empty.h5')
146+
ad_read = read(HERE / 'test.empty.h5')
147147
assert ad_read.uns['empty'].shape == (0,)

0 commit comments

Comments
 (0)