Skip to content

Commit 54049f7

Browse files
committed
don't auto-block in tests
1 parent f76dc35 commit 54049f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bioimageio/core/_resource_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def get_ns(n: int):
253253
) as prediction_pipeline:
254254
for n, batch_size, inputs, exptected_output_shape in generate_test_cases():
255255
error: Optional[str] = None
256-
result = prediction_pipeline.predict_sample_with_blocking(inputs)
256+
result = prediction_pipeline.predict_sample_without_blocking(inputs)
257257
if len(result.members) != len(exptected_output_shape):
258258
error = (
259259
f"Expected {len(exptected_output_shape)} outputs,"

0 commit comments

Comments
 (0)