summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-14 22:41:23 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-14 21:53:31 +0100
commit53078283ea3d4b6949586d93495cb4e3c2d17488 (patch)
tree28b4242b335a1103bb9c42e80d6db74ba5e302ed /gnu
parent0d1c1d984c08e6102003d06e31a24ccb4f9c1d31 (diff)
gnu: python: Skip ssl failing test.
Those python packages are not EOL yet. * gnu/packages/python.scm (python-3.10, python-3.11)[arguments] {test-flag}: Skip additional test. Mergges: guix/guix!10562
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 276a55a8b0a..c6c94da3a10 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -600,6 +600,7 @@ data types.")
600 (format #f "TESTOPTS=-j~d" (parallel-job-count)) 600 (format #f "TESTOPTS=-j~d" (parallel-job-count))
601 ;; test_mmap fails on low-memory systems 601 ;; test_mmap fails on low-memory systems
602 " --exclude test_mmap test_socket" 602 " --exclude test_mmap test_socket"
603 " test_ssl" ; started failing with openssl@3.5.7
603 #$@(if (system-hurd?) 604 #$@(if (system-hurd?)
604 #~(" test_posix" ;multiple errors 605 #~(" test_posix" ;multiple errors
605 " test_time" 606 " test_time"
@@ -826,6 +827,7 @@ def contents() -> str:
826 " test_threading" 827 " test_threading"
827 " test_asyncio" 828 " test_asyncio"
828 " test_shutdown" 829 " test_shutdown"
830 " test_ssl" ; started failing with openssl@3.5.7
829 ,@(if (target-ppc32?) 831 ,@(if (target-ppc32?)
830 '(" test_ssl") 832 '(" test_ssl")
831 '()) 833 '())