-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
pandas.tests.test_graphics.TestDataFramePlots test_unsorted_index failure #2854
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
Comments
yeh...the comparison series is built with dtype=int, which is platform dependent; and the rhs side defaults (as it wasn't specified to int64), so either need to change to np.int64 in Series construction or set check_dtypes=False in the assert (prior to 0.11, the Series would always upcast, now that dtypes is supported #2708, can get test failures like this) |
this doesn't fail on 64-bit and isn't tested on travis (as it requires matplotlib I guess...and don't build with that), should we? |
mpl is available in the FULL_DEPS build. Check the bottom of the log for installed versions: are you sure the tests are not run? |
oh...didn't think they were running because this test has not failed on travis....and given what other tests I had to change on 32-bit I think this WOULD fail....odd |
@lodagro which arch is this failing on? |
Test is ok, if i set dtype to |
TST: avoid platform dependency, close #2854 thanks!
The text was updated successfully, but these errors were encountered: