We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3182f6b commit b2efff4Copy full SHA for b2efff4
tests/test_prediction.py
@@ -9,11 +9,17 @@
9
10
11
def test_test_model(unet2d_nuclei_broad_model):
12
- from bioimageio.core.prediction import test_model
+ from bioimageio.core.resource_tests import test_model
13
14
assert test_model(unet2d_nuclei_broad_model)
15
16
17
+def test_test_resource(unet2d_nuclei_broad_model):
18
+ from bioimageio.core.resource_tests import test_resource
19
+
20
+ assert test_resource(unet2d_nuclei_broad_model)
21
22
23
def test_predict_image(unet2d_fixed_shape_or_not, tmpdir):
24
any_model = unet2d_fixed_shape_or_not # todo: replace 'unet2d_fixed_shape_or_not' with 'any_model'
25
from bioimageio.core.prediction import predict_image
0 commit comments