Skip to content

Commit e6c78de

Browse files
authored
Merge branch 'master' into doc/tutorial-fixes
2 parents bc36c66 + 52d7be8 commit e6c78de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/frontend/executors/policies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def on_task_compile_exit(self, task):
183183
pass
184184

185185
def on_task_skip(self, task):
186-
msg = str(task.exc_info[1])
186+
msg = f'{task.info()} [{task.exc_info[1]}]'
187187
self.printer.status('SKIP', msg, just='right')
188188

189189
def on_task_abort(self, task):
@@ -605,7 +605,7 @@ def on_task_compile_exit(self, task):
605605
self._pollctl.reset_snooze_time()
606606

607607
def on_task_skip(self, task):
608-
msg = str(task.exc_info[1])
608+
msg = f'{task.info()} [{task.exc_info[1]}]'
609609
self.printer.status('SKIP', msg, just='right')
610610

611611
def on_task_abort(self, task):

0 commit comments

Comments
 (0)