From 1926323d08e0ac9af5a594a3bd9b8720b0a5345f Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 18 May 2026 14:55:05 +0100 Subject: gnu: python-psleak: Skip tests on 32bit systems. If we change change the PYTHONMALLOC environment variable to default or pymalloc then the tests pass on i686 but upstream specifically uses malloc. See: . * gnu/packages/python-check.scm (python-psleak): [arguments] : Skip tests on 32bit system. Change-Id: I1bfe65d40f9b7311035c21b16c81dfda528e8db1 --- gnu/packages/python-check.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 3d13ffb253..f0e3ed7327 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -2197,6 +2197,8 @@ flake8 to check PEP-8 naming conventions.") (build-system pyproject-build-system) (arguments (list + #:tests? (and (target-64bit?) + (not (%current-target-system))) #:phases #~(modify-phases %standard-phases (add-before 'check 'pre-check -- cgit v1.3