diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-14 11:19:11 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-14 11:19:11 +0100 |
commit | 0d84e1ef22f46f27948887fcac56742dcde5fd23 (patch) | |
tree | 4cdbdee872a4284ff8fff5089578c24f7c0b228b | |
parent | 90110ef95616f2fe71e2247aec636824676f0b54 (diff) | |
download | patches-0d84e1ef22f46f27948887fcac56742dcde5fd23.tar patches-0d84e1ef22f46f27948887fcac56742dcde5fd23.tar.gz |
gnu: python-pyflakes-0.8.1: Disable tests.
* gnu/packages/python.scm (python-pyflakes-0.8.1,
python2-pyflakes-0.8.1)[arguments]: Set #:tests? #f.
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cea60b27e6..a971e8bc3b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5721,7 +5721,10 @@ complexity of Python source code.") ".tar.gz")) (sha256 (base32 - "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z")))))) + "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z")))) + (arguments + ;; XXX Tests not compatible with Python 3.5. + '(#:tests? #f)))) (define-public python2-pyflakes-0.8.1 (package-with-python2 python-pyflakes-0.8.1)) |