diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-13 01:19:07 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-13 21:04:31 +0100 |
commit | dcb0da7bff9dd35a65769e8f6a3b542306a115ac (patch) | |
tree | 219c714f229e195133ea02e5aface8746d2fbd03 /gnu/packages | |
parent | e46a043ecd9f9ef46d1d44393362bb7016454544 (diff) | |
download | guix-dcb0da7bff9dd35a65769e8f6a3b542306a115ac.tar guix-dcb0da7bff9dd35a65769e8f6a3b542306a115ac.tar.gz |
gnu: python-py: Disable tests.
* gnu/packages/python.scm (python-py, python2-py)[arguments]: Set #:tests? #f.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6d6d880bb8..fe96f0f392 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1625,6 +1625,12 @@ standard library.") (base32 "0561gz2w3i825gyl42mcq14y3dcgkapfiv5zv9a2bz15qxiijl56")))) (build-system python-build-system) + (arguments + ;; FIXME: "ImportError: 'test' module incorrectly imported from + ;; '/gnu/store/...-python-pytest-mimimal-3.0.5/lib/python3.5/site-packages'. + ;; Expected '/tmp/guix-build-python-py-1.4.31.drv-0/py-1.4.31/py'. + ;; Is this module globally installed?" + '(#:tests? #f)) (home-page "http://pylib.readthedocs.org/") (synopsis "Python library for parsing, I/O, instrospection, and logging") (description |