me
/
guix
Archived
1
0
Fork 0

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.
master
Leo Famulari 2016-10-15 22:16:30 -04:00
parent 31c580068b
commit ca0eee9df5
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 7 additions and 1 deletions

View File

@ -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")