From d79b57ce83cec23a83e2561a74c148a86e78c818 Mon Sep 17 00:00:00 2001 From: Eirini Koutsaniti Date: Mon, 30 Mar 2020 13:50:20 +0200 Subject: [PATCH] Remove _progress_count update when a test fails with status ERROR --- reframe/frontend/printer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)