Skip to content

Commit 3899aae

Browse files
committed
avoid unnecessary http requests
1 parent d90f924 commit 3899aae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/test_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ def test_no_forward_compatibility(unet2d_data: BioimageioYamlContent):
4343

4444

4545
def test_update_format(unet2d_path_old: str):
46-
updated = update_format(unet2d_path_old)
46+
updated = update_format(unet2d_path_old, perform_io_checks=False)
4747
assert updated.type == "model"
4848
assert updated.format_version == ModelDescr.implemented_format_version

tests/test_example_specs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def test_example_descr_paths(
5858
as_latest=False,
5959
exclude_fields_from_roundtrip=EXCLUDE_FIELDS_FROM_ROUNDTRIP.get(key, set()),
6060
bioimageio_json_schema=bioimageio_json_schema,
61+
perform_io_checks=False,
6162
)
6263

6364

0 commit comments

Comments
 (0)