guix_mirror_bot pushed a commit to branch hurd-team
in repository guix.
commit af72a155af217bbd2b5fae5b766a04fb5845e495
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