Skip to content

Commit

Permalink
Merge branch 'master' into doc/tutorial-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarak authored Feb 12, 2025
2 parents bc36c66 + 52d7be8 commit e6c78de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reframe/frontend/executors/policies.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def on_task_compile_exit(self, task):
pass

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

def on_task_abort(self, task):
Expand Down Expand Up @@ -605,7 +605,7 @@ def on_task_compile_exit(self, task):
self._pollctl.reset_snooze_time()

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

def on_task_abort(self, task):
Expand Down

0 comments on commit e6c78de

Please sign in to comment.