From dc5b1aa80dc58fb61d133f3888cd32ba5261a65d Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 27 Feb 2025 11:25:09 +0100 Subject: [PATCH] python313Packages.awkward: disable failing test --- .../development/python-modules/awkward/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix index 83dd0ad4cf61..5b683164681e 100644 --- a/pkgs/development/python-modules/awkward/default.nix +++ b/pkgs/development/python-modules/awkward/default.nix @@ -21,6 +21,7 @@ pyarrow, pytest-xdist, pytestCheckHook, + pythonAtLeast, }: buildPythonPackage rec { @@ -61,10 +62,15 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = [ - # pyarrow.lib.ArrowInvalid - "test_recordarray" - ]; + disabledTests = + [ + # pyarrow.lib.ArrowInvalid + "test_recordarray" + ] + ++ lib.optionals (pythonAtLeast "3.13") [ + # AttributeError: 'FrameLocalsProxy' object has no attribute 'clear' + "test_numexpr" + ]; disabledTestPaths = [