me
/
guix
Archived
1
0
Fork 0

gnu: Python: Delete broken test.

* gnu/packages/python.scm (python-3.7)[source](snippet): Delete test which
may crash some systems.
master
Marius Bakke 2018-09-07 20:19:32 +02:00
parent 9adaf1f408
commit 589aca1c18
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 9 additions and 3 deletions

View File

@ -342,9 +342,15 @@ data types.")
(snippet
'(begin
(for-each delete-file
'("Lib/ctypes/test/test_win32.py" ; fails on aarch64
"Lib/test/test_fcntl.py" ; fails on aarch64
"Lib/test/test_posix.py")) ; fails on aarch64
'(;; This test may hang and eventually run out of
;; memory on some systems:
;; <https://bugs.python.org/issue34587>
"Lib/test/test_socket.py"
;; These tests fail on AArch64.
"Lib/ctypes/test/test_win32.py"
"Lib/test/test_fcntl.py"
"Lib/test/test_posix.py"))
#t))))
(arguments
(substitute-keyword-arguments (package-arguments python-2)