Skip to content

Commit

Permalink
Remove dataset tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeschamps committed Oct 20, 2024
1 parent 54fbaec commit 2fd688f
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions tests/test_samples.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
import numpy as np
# def test_n2v_sem_data():
# data = n2v_sem_data()
# assert len(data) == 2
# assert all(isinstance(d, np.ndarray) for d, _ in data)

from careamics_napari.sample_data import n2n_sem_data, n2v_sem_data


def test_n2v_sem_data():
data = n2v_sem_data()
assert len(data) == 2
assert all(isinstance(d, np.ndarray) for d, _ in data)


def test_n2n_sem_data():
data = n2n_sem_data()
assert len(data) == 2
assert all(isinstance(d, np.ndarray) for d, _ in data)
# def test_n2n_sem_data():
# data = n2n_sem_data()
# assert len(data) == 2
# assert all(isinstance(d, np.ndarray) for d, _ in data)

0 comments on commit 2fd688f

Please sign in to comment.