From 8cb3153b64e4990e2db0ec760f1a85f00d7fee6c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 4 Jan 2025 02:43:31 +0100 Subject: [PATCH] python313Packages.pympler: disable failing tests Fixes: #370859 --- pkgs/development/python-modules/pympler/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/pympler/default.nix b/pkgs/development/python-modules/pympler/default.nix index a75ac083f7b8..4a786a454863 100644 --- a/pkgs/development/python-modules/pympler/default.nix +++ b/pkgs/development/python-modules/pympler/default.nix @@ -45,6 +45,12 @@ buildPythonPackage rec { "test_findgarbage" "test_get_tree" "test_prune" + ] + ++ lib.optionals (pythonAtLeast "3.13") [ + # https://github.com/pympler/pympler/issues/163 + "test_edges_new" + "test_edges_old" + "test_split" ]; doCheck = stdenv.hostPlatform.isLinux;