From f70bc9c9fece368c57ef1c1ea0d3b7154be2ad7e Mon Sep 17 00:00:00 2001 From: Spencer Clark Date: Thu, 28 May 2026 21:44:49 -0400 Subject: [PATCH] xfail test_roundtrip_pandas_dataframe_datetime hypothesis test (#11365) As a result of an upstream change, the `test_roundtrip_pandas_dataframe_datetime` hypothesis test has started failing. This PR marks it as an expected failure until the related upstream issue (https://github.com/pandas-dev/pandas/issues/65712) is resolved. --- properties/test_pandas_roundtrip.py | 1 + 1 file changed, 1 insertion(+) diff --git a/properties/test_pandas_roundtrip.py b/properties/test_pandas_roundtrip.py index ce555676aa7..3098f17e455 100644 --- a/properties/test_pandas_roundtrip.py +++ b/properties/test_pandas_roundtrip.py @@ -125,6 +125,7 @@ def test_roundtrip_pandas_dataframe(df) -> None: xr.testing.assert_identical(arr, roundtripped.to_xarray()) +@pytest.mark.xfail(reason="https://github.com/pandas-dev/pandas/issues/65712") @given(df=dataframe_strategy()) def test_roundtrip_pandas_dataframe_datetime(df) -> None: # Need to name the indexes, otherwise Xarray names them 'dim_0', 'dim_1'.