From: Debian Science Team Date: Mon, 21 Oct 2024 18:43:11 +0000 (+0100) Subject: Use nonstrict xfail X-Git-Tag: archive/raspbian/2.2.3+dfsg-7+rpi1~1^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=de1aab82c322df922c0fc19cfd7c6b225e6f98b0;p=pandas.git Use nonstrict xfail Upstream strict-xfailed this instead of changing the expected message, which doesn't work here because it only fails in build, not autopkgtest Author: Rebecca N. Palmer Forwarded: no Gbp-Pq: Name blosc_nonstrict_xfail.patch --- diff --git a/pandas/tests/io/pytables/test_file_handling.py b/pandas/tests/io/pytables/test_file_handling.py index 9acb65c9..2558e440 100644 --- a/pandas/tests/io/pytables/test_file_handling.py +++ b/pandas/tests/io/pytables/test_file_handling.py @@ -270,7 +270,7 @@ def test_complibs(tmp_path, lvl, lib, request): # GH14478 if PY311 and is_platform_linux() and lib == "blosc2" and lvl != 0: request.applymarker( - pytest.mark.xfail(reason=f"Fails for {lib} on Linux and PY > 3.11") + pytest.mark.xfail(reason=f"Fails for {lib} on Linux and PY > 3.11", strict=False) ) df = DataFrame( np.ones((30, 4)), columns=list("ABCD"), index=np.arange(30).astype(np.str_)