diff --git a/reframe/frontend/printer.py b/reframe/frontend/printer.py index afcc094488..a24fecbd7b 100644 --- a/reframe/frontend/printer.py +++ b/reframe/frontend/printer.py @@ -56,7 +56,7 @@ def status(self, status, message='', just=None, level=logging.INFO): status = color.colorize(status, color.GREEN) final_msg = f'[ {status} ] ' - if status_stripped in ['OK', 'SKIP', 'FAIL', 'ERROR']: + if status_stripped in ['OK', 'SKIP', 'FAIL']: self._progress_count += 1 width = len(str(self._progress_total)) padded_progress = str(self._progress_count).rjust(width)