File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1061,9 +1061,13 @@ def run_submissions(problem):
1061
1061
testcases , submissions = ts_pair
1062
1062
ok , verdict_table = Problem .run_some (testcases , submissions )
1063
1063
1064
- if len (testcases ) * len (submissions ) > 1 :
1065
- if not config .args .verbose and not config .args .no_visualizer :
1066
- log ("use -v with --visualize to see the paths to the generated images" )
1064
+ if (
1065
+ len (testcases ) * len (submissions ) > 1
1066
+ and not config .args .verbose
1067
+ and not config .args .no_visualizer
1068
+ and problem .visualizer (visualize .OutputVisualizer )
1069
+ ):
1070
+ log ("use -v with --visualize to see the paths to the generated images" )
1067
1071
1068
1072
if config .args .table :
1069
1073
Problem ._print_table (verdict_table .results , testcases )
You can’t perform that action at this time.
0 commit comments