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:
parent
60a32a2d60
commit
f529dfec74
1 changed files with 5 additions and 1 deletions
|
@ -357,7 +357,11 @@ (define-public python-3.6
|
|||
(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)))
|
||||
|
|
Loading…
Reference in a new issue