Skip to content

Commit 95dfba4

Browse files
committed
TST: skip pickle tests on not-little endianess
1 parent 37fce3c commit 95dfba4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/io/tests/test_pickle.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import unittest
99
import nose
1010
import os
11+
import sys
1112

1213
import numpy as np
1314
import pandas.util.testing as tm
@@ -16,6 +17,9 @@
1617
from pandas.sparse.tests import test_sparse
1718
from pandas.util import py3compat
1819

20+
if sys.byteorder != 'little':
21+
raise nose.SkipTest('system byteorder is not little!')
22+
1923
class TestPickle(unittest.TestCase):
2024
_multiprocess_can_split_ = True
2125

0 commit comments

Comments
 (0)