gnu: xonsh: Disable the test suite.
The tests were silently skipped with Python 3.4. With Python 3.5, this caused the xonsh build to fail. * gnu/packages/shells.scm (xonsh)[arguments]: Disable the tests.
This commit is contained in:
parent
a39cc01632
commit
792e607903
|
@ -305,6 +305,11 @@ ksh, and tcsh.")
|
||||||
(("'xonsh\\.ply',") ""))
|
(("'xonsh\\.ply',") ""))
|
||||||
#t))))
|
#t))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(;; TODO Try running run the test suite.
|
||||||
|
;; See 'requirements-tests.txt' in the source distribution for more
|
||||||
|
;; information.
|
||||||
|
#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-ply" ,python-ply)))
|
`(("python-ply" ,python-ply)))
|
||||||
(home-page "http://xon.sh/")
|
(home-page "http://xon.sh/")
|
||||||
|
|
Loading…
Reference in New Issue