summaryrefslogtreecommitdiff
path: root/gnu/packages/shells.scm
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2016-10-16 11:09:11 -0400
committerLeo Famulari <leo@famulari.name>2016-10-16 11:10:19 -0400
commit792e6079034ec59732eda3c87f84bb8a6f34d46f (patch)
treeddc1fb49d65d9d90ca22998d7e61ddefe1b16a5b /gnu/packages/shells.scm
parenta39cc016329f1f490ac7629fa81c9b686e7b0f4e (diff)
downloadguix-patches-792e6079034ec59732eda3c87f84bb8a6f34d46f.tar
guix-patches-792e6079034ec59732eda3c87f84bb8a6f34d46f.tar.gz
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.
Diffstat (limited to 'gnu/packages/shells.scm')
-rw-r--r--gnu/packages/shells.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 1fa828059d..78ff1730c9 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -305,6 +305,11 @@ ksh, and tcsh.")
(("'xonsh\\.ply',") ""))
#t))))
(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
`(("python-ply" ,python-ply)))
(home-page "http://xon.sh/")