guix_mirror_bot pushed a commit to branch hurd-team
in repository guix.
commit 1b694b06ebb9b16629d596e53e3341b441a11f2d
Author: Yelninei <[email protected]>
AuthorDate: Wed Jun 4 15:21:54 2025 +0100
gnu: python: Skip test_largefile on the 64bit Hurd.
* gnu/packages/python.scm (python-3.11):[#:make-flags]: Skip test_largefile
on
the 64bit Hurd.
Change-Id: I3a93a69969b43eaf99d639afc5448f82627f19d1
---
gnu/packages/python.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6f78ad8770..6d5fe9b73c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -820,6 +820,9 @@ def contents() -> str:
" test_pdb "
" test_regrtest"
" test_sqlite")
+ '())
+ ,@(if (system-hurd64?)
+ '(" test_largefile") ;; hangs
'())))
#:modules