From 9b6ce41ceaf1ea3267757a4dcdd9afd603b25cd8 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Fri, 15 Aug 2025 16:58:29 +0200 Subject: [PATCH] CI/BLD: don't use strict xfail for '%m.%Y' format in test_hypothesis_delimited_date --- pandas/tests/tslibs/test_parsing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/tests/tslibs/test_parsing.py b/pandas/tests/tslibs/test_parsing.py index bc5cd5fcccbf8..72515c030757b 100644 --- a/pandas/tests/tslibs/test_parsing.py +++ b/pandas/tests/tslibs/test_parsing.py @@ -402,7 +402,8 @@ def test_hypothesis_delimited_date( request.applymarker( pytest.mark.xfail( reason="parse_datetime_string cannot reliably tell whether " - "e.g. %m.%Y is a float or a date" + "e.g. %m.%Y is a float or a date", + strict=False, ) ) date_string = test_datetime.strftime(date_format.replace(" ", delimiter))