Skip to content

Commit

Permalink
TST: skip .to_json with encoding test as not implemented yet
Browse files Browse the repository at this point in the history
xref #13351
xref #13774
  • Loading branch information
jreback committed Jul 24, 2016
1 parent 6efd743 commit 964b7bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pandas/io/tests/json/test_pandas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# pylint: disable-msg=W0612,E1101
import nose
from pandas.compat import range, lrange, StringIO, OrderedDict
import os

Expand Down Expand Up @@ -967,6 +968,9 @@ def test_latin_encoding(self):
TypeError, '\[unicode\] is not implemented as a table column')
return

# GH 13774
raise nose.SkipTest("encoding not implemented in .to_json(), xref #13774")

values = [[b'E\xc9, 17', b'', b'a', b'b', b'c'],
[b'E\xc9, 17', b'a', b'b', b'c'],
[b'EE, 17', b'', b'a', b'b', b'c'],
Expand Down

0 comments on commit 964b7bb

Please sign in to comment.