@@ -1753,7 +1753,7 @@ def test_parse_timezone(all_parsers):
1753
1753
tm .assert_frame_equal (result , expected )
1754
1754
1755
1755
1756
- @xfail_pyarrow # pandas.errors.ParserError: CSV parse error
1756
+ @skip_pyarrow # pandas.errors.ParserError: CSV parse error
1757
1757
@pytest .mark .parametrize (
1758
1758
"date_string" ,
1759
1759
["32/32/2019" , "02/30/2019" , "13/13/2019" , "13/2019" , "a3/11/2018" , "10/11/2o17" ],
@@ -1787,8 +1787,8 @@ def test_parse_delimited_date_swap_no_warning(
1787
1787
expected = DataFrame ({0 : [expected ]}, dtype = "datetime64[ns]" )
1788
1788
if parser .engine == "pyarrow" :
1789
1789
if not dayfirst :
1790
- mark = pytest . mark . xfail ( reason = "CSV parse error: Empty CSV file or block" )
1791
- request . applymarker ( mark )
1790
+ # "CSV parse error: Empty CSV file or block"
1791
+ pytest . skip ( reason = "https://github.com/apache/arrow/issues/38676" )
1792
1792
msg = "The 'dayfirst' option is not supported with the 'pyarrow' engine"
1793
1793
with pytest .raises (ValueError , match = msg ):
1794
1794
parser .read_csv (
@@ -1802,7 +1802,8 @@ def test_parse_delimited_date_swap_no_warning(
1802
1802
tm .assert_frame_equal (result , expected )
1803
1803
1804
1804
1805
- @xfail_pyarrow
1805
+ # ArrowInvalid: CSV parse error: Empty CSV file or block: cannot infer number of columns
1806
+ @skip_pyarrow
1806
1807
@pytest .mark .parametrize (
1807
1808
"date_string,dayfirst,expected" ,
1808
1809
[
@@ -1887,7 +1888,8 @@ def test_hypothesis_delimited_date(
1887
1888
assert result == expected
1888
1889
1889
1890
1890
- @xfail_pyarrow # KeyErrors
1891
+ # ArrowKeyError: Column 'fdate1' in include_columns does not exist in CSV file
1892
+ @skip_pyarrow
1891
1893
@pytest .mark .parametrize (
1892
1894
"names, usecols, parse_dates, missing_cols" ,
1893
1895
[
0 commit comments