3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: python-3.6: Disable failing test.

* gnu/packages/python.scm (python-3.6)[source]: Delete
Lib/test/test_socket.py.
This commit is contained in:
Ricardo Wurmus 2018-03-15 09:21:58 +01:00
parent 60a32a2d60
commit f529dfec74
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -357,7 +357,11 @@ data types.")
(for-each delete-file
'("Lib/ctypes/test/test_structures.py" ; fails on aarch64
"Lib/ctypes/test/test_win32.py" ; fails on aarch64
"Lib/test/test_fcntl.py")) ; fails on aarch64
"Lib/test/test_fcntl.py" ; fails on aarch64
;; This test fails on kernels older than 4.5.
;; It is skipped on these kernels in later
;; versions of Python.
"Lib/test/test_socket.py"))
#t))))
(arguments (substitute-keyword-arguments (package-arguments python-2)
((#:tests? _) #t)))