You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that you sometimes have long running tasks and when an error happens you immediately want to see the information without waiting for the other tasks to finish.
Current solutions are:
Using the -x flag to immediately abort execution, but in a parallel mode it waits for the other tasks. Same with KeyboardInterrupt.
Multiple pytask sessions for each task which could lead to errors when the database is changed at the same time.
Describe the solution you'd like
A switch which prints the usual error report known from the execution logger during the execution.