-
Notifications
You must be signed in to change notification settings - Fork 358
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
Travis CI: issue with python 3.5 and doctest #270
Comments
I think this is an issue inherited from Pandas. You can use |
Hope this helps |
Thanks, either way looks not specific to this library. |
We can't leave the flakiness. I guess we can fix by explicitly reordering columns after df = ks.DataFrame({ ... })
df = df[['name', 'mask', 'weapon']] or df = ks.DataFrame([['Raphael', 'red', 'sal'],
['Donatello', 'purple', 'bo staff']],
columns=['name', 'mask', 'weapon']) Let me fix the existing tests. |
Seems df = ks.DataFrame({ ... }, columns=['name', 'mask', 'weapon']) |
In Python 3.5, using `dict` causes doctest flakiness. This PR tries to fix the flakiness by explicitly specifying `columns=[...]` or sorting the result. Resolves #270.
I agree |
Travis CI with python 3.5 returns different results than expected in
doctest
.Here is an example :
I check
doctest
with Pandas 0.23.4 and python 3.6 locally and everything works well.We had this issue in these PRs: #239 #238 #267
The text was updated successfully, but these errors were encountered: