diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-15 12:12:13 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-15 12:12:13 +0100 |
commit | 385871e5f7a69ed1c473501be22d0338984a932c (patch) | |
tree | 093e51fda2d6982da43be036f54adc5df2135547 | |
parent | 7b93d866708d1fae54aee86473ffde5bd64be055 (diff) | |
download | guix-385871e5f7a69ed1c473501be22d0338984a932c.tar guix-385871e5f7a69ed1c473501be22d0338984a932c.tar.gz |
gnu: python-zope-testrunner: Disable tests.
* gnu/packages/python.scm (python-zope-testrunner,
python2-zope-testrunner)[arguments]: Set #:tests? #f.
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cbe770db39..0646e9739b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7318,6 +7318,8 @@ forms, HTTP servers, regular expressions, and more.") (base32 "1r7iqknhh55y45f64mz5hghgvzx34h1i11k350s0avx6q8gznja1")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Tests can't find zope.interface. (native-inputs `(("python-six" ,python-six) ;("python-zope-interface" ,python-zope-interface) |