Skip to content

Commit 1a8273c

Browse files
committed
TST: skipping xref #14120, locale separator in parser tests of unsupported engines
1 parent 3110a72 commit 1a8273c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/io/tests/parser/test_unsupported.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ def test_c_engine(self):
6060
sep=None, delim_whitespace=False)
6161
with tm.assertRaisesRegexp(ValueError, msg):
6262
read_table(StringIO(data), engine='c', sep='\s')
63-
with tm.assertRaisesRegexp(ValueError, msg):
64-
read_table(StringIO(data), engine='c', sep='§')
63+
64+
# GH 14120, skipping as failing when locale is set
65+
# with tm.assertRaisesRegexp(ValueError, msg):
66+
# read_table(StringIO(data), engine='c', sep='§')
6567
with tm.assertRaisesRegexp(ValueError, msg):
6668
read_table(StringIO(data), engine='c', skipfooter=1)
6769

0 commit comments

Comments
 (0)