Skip to content

Commit 964b7bb

Browse files
committed
TST: skip .to_json with encoding test as not implemented yet
xref #13351 xref #13774
1 parent 6efd743 commit 964b7bb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/io/tests/json/test_pandas.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# pylint: disable-msg=W0612,E1101
2+
import nose
23
from pandas.compat import range, lrange, StringIO, OrderedDict
34
import os
45

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

971+
# GH 13774
972+
raise nose.SkipTest("encoding not implemented in .to_json(), xref #13774")
973+
970974
values = [[b'E\xc9, 17', b'', b'a', b'b', b'c'],
971975
[b'E\xc9, 17', b'a', b'b', b'c'],
972976
[b'EE, 17', b'', b'a', b'b', b'c'],

0 commit comments

Comments
 (0)