-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Remove test plot line blarg #13573
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
Remove test plot line blarg #13573
Conversation
The "blarg" argument is propagated to matplotlib and there it raises an AttributeError (and not a TypeError). However, since the test doesn't seem to have a rationale, it is removed here.
Current coverage is 84.34%@@ master #13573 diff @@
==========================================
Files 138 138
Lines 51126 51126
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
Hits 43122 43122
Misses 8004 8004
Partials 0 0
|
@@ -528,3 +528,5 @@ Bug Fixes | |||
|
|||
- Bug in ``Categorical.remove_unused_categories()`` changes ``.codes`` dtype to platform int (:issue:`13261`) | |||
- Bug in ``groupby`` with ``as_index=False`` returns all NaN's when grouping on multiple columns including a categorical one (:issue:`13204`) | |||
|
|||
- Bug in ``test_graphics`` to pass the tests with matplotlib 1.9.2 |
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.
you mean 1.5.2., instead say compat
with matplotlib 1.5.2
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.
I don't think release note is needed, because it is test change.
Closing this in favour of PR #13641 |
@olebole Even though it is not merged, thanks for your contribution! |
Superceded by #13641
git diff upstream/master | flake8 --diff
The "blarg" argument is propagated to matplotlib and there it raises an
AttributeError (and not a TypeError).
However, since the test doesn't seem to have a rationale, it is removed here.