python313Packages.pympler: disable failing tests

Fixes: #370859
This commit is contained in:
Martin Weinelt
2025-01-04 16:22:57 +01:00
parent 24cdd618a4
commit 8cb3153b64
@@ -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;