From 0b6198ca30b81fed00eef9154fc0b5640e271db0 Mon Sep 17 00:00:00 2001 From: Debian Science Team Date: Tue, 28 Jan 2025 22:18:06 +0000 Subject: [PATCH] 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 --- pandas/tests/io/pytables/test_file_handling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_) -- 2.30.2