-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[Core] Look up docstring converter by type as fallback #2459
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2459 +/- ##
=========================================
Coverage 83.65% 83.66%
- Complexity 2675 2677 +2
=========================================
Files 319 319
Lines 9434 9439 +5
Branches 916 917 +1
=========================================
+ Hits 7892 7897 +5
Misses 1203 1203
Partials 339 339
Continue to review full report at Codecov.
|
Pffff. To cover all cases I've got to take the Cartesian product of:
Which works out to:
I think we're missing a few test cases. |
So given:
These cases are covered by
These then are covered by
Then these exceptional situations exist because no converters could be found:
And these because multiple converters were found:
But that is not the behaviour we observe. So something with the way the empty docstring is handled is broken. |
40c8819
to
47bdb92
Compare
Fixes: #2458