gnu: python2-futures: Disable tests.

* gnu/packages/python.scm (python2-futures)[arguments]: Set #:test? #f.
This commit is contained in:
Marius Bakke 2018-11-24 18:36:45 +01:00
parent 60667159d3
commit 799d4bac62
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -261,6 +261,10 @@ (define-public python-2.7
((or "." "..") #f)
(file
(not
;; FIXME: Add the 'support' directory
;; in the next rebuild cycle, since it
;; moved in 2.7.14. See also
;; python2-futures below.
(string-prefix? "test_support."
file))))))
(call-with-output-file "__init__.py" (const #t))
@ -7766,7 +7770,11 @@ (define-public python2-futures
(base32
"1pw1z4329xvlabdpwqa6b7v2fxf7hl64m4cgr22ckbym8m8m4hh5"))))
(build-system python-build-system)
(arguments `(#:python ,python-2))
(arguments `(#:python ,python-2
;; FIXME: Python 2.7.14 moved the test.support library,
;; but our package has not yet been adjusted. Enable
;; tests when the python2 package has been fixed.
#:tests? #f))
(home-page "https://github.com/agronholm/pythonfutures")
(synopsis
"Backport of the concurrent.futures package from Python 3.2")