Skip to content

Commit 4d87c94

Browse files
committed
Fix CLI script runner not displaying suite reports
Updated cli_script_monitor to display suite reports from the complete message. This was missed when commit 68d656c added reports to fix a race condition in the GUI, breaking CLI output for test suites.
1 parent 93ee963 commit 4d87c94

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

openc3/bin/openc3cli

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,9 @@ def cli_script_monitor(script_id)
610610
puts resp['line']
611611
when 'complete'
612612
$script_interrupt_text = ''
613+
if resp['report']
614+
puts resp['report']
615+
end
613616
puts 'script complete'
614617
ret_code = 0
615618
break

0 commit comments

Comments
 (0)