guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit f7ad76b9154c814f959faa7902d27f7c096fc94a
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 97da50e5cd..10bc418b3e 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -495,6 +495,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"
@@ -760,6 +762,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"