Skip to content

Commit 50a8079

Browse files
CI/BLD: don't use strict xfail for '%m.%Y' format in test_hypothesis_delimited_date (#62124)
1 parent d64ef7c commit 50a8079

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/tslibs/test_parsing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ def test_hypothesis_delimited_date(
402402
request.applymarker(
403403
pytest.mark.xfail(
404404
reason="parse_datetime_string cannot reliably tell whether "
405-
"e.g. %m.%Y is a float or a date"
405+
"e.g. %m.%Y is a float or a date",
406+
strict=False,
406407
)
407408
)
408409
date_string = test_datetime.strftime(date_format.replace(" ", delimiter))

0 commit comments

Comments
 (0)