-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
TST: test fixes for various builds (debian) #3898
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
Conversation
@@ -16,6 +17,9 @@ | |||
from pandas.sparse.tests import test_sparse | |||
from pandas.util import py3compat | |||
|
|||
if sys.byteorder != 'little': | |||
raise nose.SkipTest('system byteorder is not little!') |
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.
but isn't it more of a KnownFailure than just a skip? ;)
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.
is there a better way to indicate a known failure?
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 have forgotten why this one is not used any longer:
(sid)root@vagus:/home/yoh/deb/gits/pkg-exppsy/pandas# git grep KnownFailure
pandas/util/decorators.py:class KnownFailureTest(Exception):
pandas/util/decorators.py: Make function raise KnownFailureTest exception if given condition is true.
pandas/util/decorators.py: Message to give on raising a KnownFailureTest exception.
pandas/util/decorators.py: raise KnownFailureTest(msg)
but also look e.g. at https://github.com/numpy/numpy/blob/master/doc/TESTS.rst.txt#known-failures-skipping-tests
TST: test fixes for various builds (debian)
TST: json tests to int64 to avoid dtype issues, closes #3895
TST: skip tests if xlrd has lower than needed version, closes #3897
TST: skip pickle tests on not-little endianess , closes #3894
TST: skip test_encoding on non-little endian in test_pytables , closes #3892
TST: skip some stata tests on non-little endian, closes #3896