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 7f9cab7 commit c6a1e76Copy full SHA for c6a1e76
bioimageio/core/__main__.py
@@ -5,6 +5,7 @@
5
from glob import glob
6
7
from pathlib import Path
8
+from pprint import pprint
9
from typing import List, Optional
10
11
import typer
@@ -110,7 +111,7 @@ def test_model(
110
111
ret_code = 0
112
else:
113
print(f"Model test for {model_rdf} using {weight_format} weight format has FAILED!")
- print(summary)
114
+ pprint(summary)
115
ret_code = 1
116
sys.exit(ret_code)
117
@@ -138,7 +139,7 @@ def test_resource(
138
139
140
141
print(f"Resource test for {rdf} has FAILED!")
142
143
144
145
0 commit comments