Skip to content

Commit

Permalink
Skip test_invalid_parse_delimited_date
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Nov 7, 2023
1 parent aeab407 commit dff4d37
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pandas/tests/io/parser/test_parse_dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -1808,8 +1808,10 @@ def test_invalid_parse_delimited_date(all_parsers, date_string, request):
pytest.skip(f"Can hang in CI environment with {parser.engine=}")
else:
mark = pytest.mark.xfail(
reason="CSV parse error: Empty CSV file or block: "
"cannot infer number of columns"
reason=(
"CSV parse error: Empty CSV file or block: "
"cannot infer number of columns"
)
)
request.applymarker(mark)
expected = DataFrame({0: [date_string]}, dtype="object")
Expand Down

0 comments on commit dff4d37

Please sign in to comment.