diff options
author | Marius Bakke <marius@gnu.org> | 2021-12-16 21:52:33 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-12-16 22:21:13 +0100 |
commit | 00ec9e3414562bdd8fcc0ff83a4167e4ee91b9ff (patch) | |
tree | 6e461ccbf7b2f2156cb3475976a66c35b411b241 /gnu | |
parent | ee4561b08e54c379525837e78bc152ca74bf21e3 (diff) | |
download | guix-00ec9e3414562bdd8fcc0ff83a4167e4ee91b9ff.tar.gz |
gnu: rtv: Disable sanity check.
* gnu/packages/syndication.scm (rtv)[arguments]: Delete phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/syndication.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index 04380b10c0..0c6d860f72 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -424,7 +424,9 @@ a simple interface that makes it easy to organize and browse feeds.") (setenv "HOME" (getcwd)) (setenv "TERM" "linux") (setenv "TERMINFO" - (search-input-directory inputs "share/terminfo"))))) + (search-input-directory inputs "share/terminfo")))) + ;; Loading this as a library requires a controlling terminal, etc. + (delete 'sanity-check)) #:tests? #f)) ; tests fail: _curses.error: nocbreak() returned ERR (propagated-inputs (list python-beautifulsoup4 python-decorator python-kitchen |