summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-18 14:55:05 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-18 14:55:30 +0100
commit1926323d08e0ac9af5a594a3bd9b8720b0a5345f (patch)
treec8082c11885368a3952f88433ea44c9af71fdb63
parentcce48abd77800b405d6cefd3e41e646fdb9d4f01 (diff)
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: <https://codeberg.org/guix/guix/issues/8413#issuecomment-15183744>. * gnu/packages/python-check.scm (python-psleak): [arguments] <tests?>: Skip tests on 32bit system. Change-Id: I1bfe65d40f9b7311035c21b16c81dfda528e8db1
-rw-r--r--gnu/packages/python-check.scm2
1 files changed, 2 insertions, 0 deletions
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