lfam pushed a commit to branch core-updates
in repository guix.

commit ca0eee9df5b048dbf509a91c3b78a805fd1e2200
Author: Leo Famulari <l...@famulari.name>
Date:   Sat Oct 15 22:16:30 2016 -0400

    gnu: python-execnet: Disable tests.
    
    The tests were silently skipped with Python 3.4. With Python 3.5, this
    caused the python-execnet build to fail.
    
    * gnu/packages/python.scm (python-execnet, python2-execnet)[arguments]: 
Disable
    tests.
---
 gnu/packages/python.scm |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 02ec731..f6917ba 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -7311,8 +7311,14 @@ pure Python module that works on virtually all Python 
versions.")
               (base32
                "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn"))))
     (build-system python-build-system)
+    (arguments
+     `(;; 2 failed, 275 passed, 670 skipped, 4 xfailed
+       ;; The two test failures are caused by the lack of an `ssh` executable.
+       ;; The test suite can be run with pytest after the 'install' phase.
+       #:tests? #f))
     (native-inputs
-     `(("python-setuptools-scm" ,python-setuptools-scm)))
+     `(("python-pytest" ,python-pytest)
+       ("python-setuptools-scm" ,python-setuptools-scm)))
     (inputs
      `(("python-apipkg" ,python-apipkg)))
     (synopsis "Rapid multi-Python deployment")

Reply via email to