We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3110a72 commit 1a8273cCopy full SHA for 1a8273c
pandas/io/tests/parser/test_unsupported.py
@@ -60,8 +60,10 @@ def test_c_engine(self):
60
sep=None, delim_whitespace=False)
61
with tm.assertRaisesRegexp(ValueError, msg):
62
read_table(StringIO(data), engine='c', sep='\s')
63
- with tm.assertRaisesRegexp(ValueError, msg):
64
- read_table(StringIO(data), engine='c', sep='§')
+
+ # GH 14120, skipping as failing when locale is set
65
+ # with tm.assertRaisesRegexp(ValueError, msg):
66
+ # read_table(StringIO(data), engine='c', sep='§')
67
68
read_table(StringIO(data), engine='c', skipfooter=1)
69
0 commit comments