diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-28 12:46:02 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-28 13:39:37 -0400 |
commit | 92c3ef2cf3b297f5469658ef6c0d94e78255d27d (patch) | |
tree | c1f9427392efe3805cc171a5b63278fc952c33fe | |
parent | 95bff4f697ca3d1a95a0ae6b41b445355f4307c3 (diff) | |
download | guix-92c3ef2cf3b297f5469658ef6c0d94e78255d27d.tar guix-92c3ef2cf3b297f5469658ef6c0d94e78255d27d.tar.gz |
gnu: python-feedparser: Disable the test suite.
The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the build of python-feedparser to fail.
* gnu/packages/python.scm (python-feedparser, python2-feedparser)[arguments]:
Disable the tests.
-rw-r--r-- | gnu/packages/web.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 30d0677c1b..976820171b 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -3161,6 +3161,8 @@ their web site.") (base32 "00hb4qg2am06g81mygfi1jsbx8830024jm45g6qp9g8fr6am91yf")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) (home-page "https://github.com/kurtmckee/feedparser") (synopsis "Parse feeds in Python") |