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

commit 54d70582599445f09ef090a6d839b248a83947e3
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 6f78ad8770..37dd7b35c7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -503,6 +503,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"
@@ -768,6 +770,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