-
-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1329,10 +1329,6 @@ def test_plot(self): | |
subplots=True, use_index=False) | ||
self._check_axes_shape(axes, axes_num=4, layout=(4, 1)) | ||
|
||
df = DataFrame({'x': [1, 2], 'y': [3, 4]}) | ||
with tm.assertRaises(TypeError): | ||
df.plot.line(blarg=True) | ||
|
||
df = DataFrame(np.random.rand(10, 3), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to skip on that version and above, see how the other tests do it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and add another test with only takes >=1.5.2 and tests for the correct exception. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Also, pls add original issue number for reference. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah sorry, my config was incorrect. Mac looks affected also. |
||
index=list(string.ascii_letters[:10])) | ||
|
||
|
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.2There 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.