guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.

commit 7c7c6f362a79cce4968e41cf21c1081ba1c2ab41
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Thu Jun 19 20:17:39 2025 +0200

    [WORKAROUND] gnu: python: Fix build with unprivileged daemon.
    
    * gnu/packages/python.scm (python-3.10, python-3.11)[#:make-flags]: Also
    exclude “test_os” and “test_subprocess”.
---
 gnu/packages/python.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 881fc6364c..fcdb23c5c6 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -500,6 +500,8 @@ data types.")
                  (format #f "TESTOPTS=-j~d" (parallel-job-count))
                  ;; test_mmap fails on low-memory systems
                  " --exclude test_mmap test_socket"
+                 " test_os"              ; broken with unprivileged daemon
+                 " test_subprocess"      ; broken with unprivileged daemon
                  #$@(if (system-hurd?)
                         #~(" test_posix" ;multiple errors
                            " test_time"
@@ -766,6 +768,8 @@ def contents() -> str:
                             " test_threading"
                             " test_asyncio"
                             " test_shutdown"
+                            " test_os"              ; broken with unprivileged 
daemon
+                            " test_subprocess"      ; broken with unprivileged 
daemon
                             ,@(if (system-hurd?)
                                   '(" test_posix" ;multiple errors
                                     " test_time"

Reply via email to