Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/commands/run.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,10 @@ function _zunit_run() {
[[ -n $output_html ]] && _zunit_html_footer >> $logfile_html

# Output results to screen and kill the progress indicator
[[ -z $tap ]] && _zunit_output_results && revolver stop
if [[ -z $tap ]]; then
_zunit_output_results
revolver stop
fi

# If the total of ($passed + $skipped) is not equal to the
# total, then there must have been failures, errors or warnings,
Expand Down