Skip to content

Commit 2633d0c

Browse files
jorisvandenbosschemeeseeksmachine
authored andcommitted
Backport PR pandas-dev#62124: CI/BLD: don't use strict xfail for '%m.%Y' format in test_hypothesis_delimited_date
1 parent fafbcbd commit 2633d0c

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
@@ -395,7 +395,8 @@ def test_hypothesis_delimited_date(
395395
request.applymarker(
396396
pytest.mark.xfail(
397397
reason="parse_datetime_string cannot reliably tell whether "
398-
"e.g. %m.%Y is a float or a date"
398+
"e.g. %m.%Y is a float or a date",
399+
strict=False,
399400
)
400401
)
401402
date_string = test_datetime.strftime(date_format.replace(" ", delimiter))

0 commit comments

Comments
 (0)