-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gokart.build hides Exceptions occured in run() #209
Comments
Everytime I'm debugging it as follows.
I've always wanted a better way. |
Thx. |
My work arround which prints the raised exception import gokart
class A(gokart.TaskOnKart):
def on_failure(self, exception):
import traceback
traceback.print_exc()
return super().on_failure(exception)
def run(self):
raise Exception()
self.dump("done")
gokart.build(A()) |
It's similar: #224 I think It is best if luigi returns stacktrace. ( spotify/luigi#3095 ) |
#237 lessened the pain. For now,
Thx all! |
The text was updated successfully, but these errors were encountered: