Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 235d5cb

Browse files
committed
Increases minimum dimensions for random volume in tests
- To overcome occasional test failure when imageio requires vol.shape[2] >= 5
1 parent b11fc79 commit 235d5cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def prediction_settings(prediction_settings_path):
6666

6767
@pytest.fixture()
6868
def rand_size():
69-
return np.random.randint(3, 256, size=(3))
69+
return np.random.randint(10, 256, size=(3))
7070

7171

7272
@pytest.fixture()

0 commit comments

Comments
 (0)