Skip to content

Commit

Permalink
Update runner.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Mar 15, 2024
1 parent d7916a2 commit 24c0efc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lea/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ def display_progress() -> rich.table.Table:
if exception := jobs[view_key].exception():
exceptions[view_key] = exception
if fail_fast:
self.print(str(self.views[view_key_with_error]), style="bold red")
self.print(exceptions[view_key_with_error])
self.print(str(self.views[view_key]), style="bold red")
self.print(exceptions[view_key])
raise exception

live.update(display_progress())
Expand Down

0 comments on commit 24c0efc

Please sign in to comment.