-
Notifications
You must be signed in to change notification settings - Fork 177
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
move default_args into kwargs #1382
base: main
Are you sure you want to change the base?
move default_args into kwargs #1382
Conversation
Small update to fix a bug where when using |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1382 +/- ##
=======================================
Coverage 96.06% 96.06%
=======================================
Files 67 67
Lines 4042 4044 +2
=======================================
+ Hits 3883 3885 +2
Misses 159 159 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @david-mag thanks for your contribution, please, could you add a test to cover this use-case?
added a test case for this |
…bernetes_operator
Description
When using default argument for
on_error_callback
functions, it is not executed, because its in a sub-dictionary inkwargs
.