Skip to content

Commit c45d078

Browse files
committed
allow missing bioimageio summary
1 parent 01d2133 commit c45d078

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/prepare_to_deploy.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ def get_sub_summaries(path: Path):
1919

2020

2121
def filter_test_summaries(tests: Dict[str, List[Dict[str, Any]]]) -> Dict[str, List[Dict[str, Any]]]:
22-
assert "bioimageio" in tests
2322
unique_tests = set()
2423
ret = {}
2524
for partner in ["bioimageio"] + [p for p in tests if p != "bioimageio"]: # process 'bioimageio' first
26-
for summary in tests[partner]:
25+
for summary in tests.get(partner, []):
2726
key = tuple(
2827
[
2928
str(summary.get(k))

0 commit comments

Comments
 (0)