summaryrefslogtreecommitdiff
path: root/gnu/packages/python.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2026-05-05 09:41:01 +0300
committerEfraim Flashner <efraim@flashner.co.il>2026-05-06 08:14:53 +0300
commitfdcfe680213e1c4c15673de5fc30323b948487f2 (patch)
treeef9f9360d3c5b23c03102283a1be3b94d6e9be28 /gnu/packages/python.scm
parent9749500d754de3772933ef268f6b3a5f10ebbe1a (diff)
gnu: python: Skip a test on powerpc-linux.
* gnu/packages/python.scm (python-3.11)[arguments]: Skip a test when building for powerpc-linux. Change-Id: Ic60ff6726c5ea24ea3d271c3008bdd29df05edc2
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r--gnu/packages/python.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index cf1235b5282..79696e2a77c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -768,6 +768,9 @@ def contents() -> str:
768 " test_threading" 768 " test_threading"
769 " test_asyncio" 769 " test_asyncio"
770 " test_shutdown" 770 " test_shutdown"
771 ,@(if (target-ppc32?)
772 '(" test_ssl")
773 '())
771 ,@(if (system-hurd?) 774 ,@(if (system-hurd?)
772 '(" test_posix" ;multiple errors 775 '(" test_posix" ;multiple errors
773 " test_time" 776 " test_time"