gnu: qutebrowser: Add comment about tests.
* gnu/packages/web-browsers.scm (qutebrowser)[arguments]: Indicate that tests have been added, but to wait on fixing or working-around the failing test case for QtWebEngine until it is determined whether a liberated QtWebEngine can be made available or not.
This commit is contained in:
parent
d7c58c3e54
commit
7e232d02ea
1 changed files with 6 additions and 2 deletions
|
@ -301,7 +301,12 @@ access.")
|
||||||
("python-pyqt" ,python-pyqt)
|
("python-pyqt" ,python-pyqt)
|
||||||
("qtwebkit" ,qtwebkit)))
|
("qtwebkit" ,qtwebkit)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no tests
|
`(;; FIXME: Tests have been added to Qutebrowser. But they currently fail on
|
||||||
|
;; trying to locate QtWebEngine, and run it on a specific display.
|
||||||
|
;; There does not seem to be a trivial way to suppress this test.
|
||||||
|
;; Either fix this, or wait for a liberated QtWebEngine to make into GNU Guix.
|
||||||
|
;; Change this according to <https://bugs.gnu.org/35866>.
|
||||||
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-more
|
(add-after 'install 'install-more
|
||||||
|
@ -312,7 +317,6 @@ access.")
|
||||||
(invoke "a2x" "-f" "manpage" "doc/qutebrowser.1.asciidoc")
|
(invoke "a2x" "-f" "manpage" "doc/qutebrowser.1.asciidoc")
|
||||||
(install-file "doc/qutebrowser.1"
|
(install-file "doc/qutebrowser.1"
|
||||||
(string-append out "/share/man/man1"))
|
(string-append out "/share/man/man1"))
|
||||||
|
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (i)
|
(lambda (i)
|
||||||
(let ((src (format #f "icons/qutebrowser-~dx~d.png" i i))
|
(let ((src (format #f "icons/qutebrowser-~dx~d.png" i i))
|
||||||
|
|
Reference in a new issue