Skip to content

Commit 01d2133

Browse files
committed
fix filter_test_summaries
1 parent 14f766a commit 01d2133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/prepare_to_deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def filter_test_summaries(tests: Dict[str, List[Dict[str, Any]]]) -> Dict[str, L
2222
assert "bioimageio" in tests
2323
unique_tests = set()
2424
ret = {}
25-
for partner in ["bioimageio", [p for p in tests if p != "bioimageio"]]: # process 'bioimageio' first
25+
for partner in ["bioimageio"] + [p for p in tests if p != "bioimageio"]: # process 'bioimageio' first
2626
for summary in tests[partner]:
2727
key = tuple(
2828
[

0 commit comments

Comments
 (0)