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 14f766a commit 01d2133Copy full SHA for 01d2133
scripts/prepare_to_deploy.py
@@ -22,7 +22,7 @@ def filter_test_summaries(tests: Dict[str, List[Dict[str, Any]]]) -> Dict[str, L
22
assert "bioimageio" in tests
23
unique_tests = set()
24
ret = {}
25
- for partner in ["bioimageio", [p for p in tests if p != "bioimageio"]]: # process 'bioimageio' first
+ for partner in ["bioimageio"] + [p for p in tests if p != "bioimageio"]: # process 'bioimageio' first
26
for summary in tests[partner]:
27
key = tuple(
28
[
0 commit comments