Skip to content

Commit 33922f8

Browse files
committed
TST: skip test_encoding on non-little endian in test_pytables
1 parent 95dfba4 commit 33922f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/io/tests/test_pytables.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,9 @@ def test_append(self):
477477

478478
def test_encoding(self):
479479

480+
if sys.byteorder != 'little':
481+
raise nose.SkipTest('system byteorder is not little, skipping test_encoding!')
482+
480483
with ensure_clean(self.path) as store:
481484
df = DataFrame(dict(A='foo',B='bar'),index=range(5))
482485
df.loc[2,'A'] = np.nan

0 commit comments

Comments
 (0)