New comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/28286#issuecomment-769480315 Comment: Please apply this patch: ```diff diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template index c80d32792f..4c160a1adf 100644 --- a/srcpkgs/qutebrowser/template +++ b/srcpkgs/qutebrowser/template @@ -7,7 +7,7 @@ hostmakedepends="python3-setuptools asciidoc" depends="python3-PyQt5-quick python3-Jinja2 python3-Pygments python3-pyPEG2 python3-yaml python3-attrs python3-PyQt5-opengl python3-PyQt5-sql qt5-plugin-sqlite python3-setuptools" - checkdepends="$depends python3-pytest" +checkdepends="$depends python3-pytest xvfb-run" short_desc="Keyboard-focused browser with a minimal GUI" maintainer="Érico Nogueira " license="GPL-3.0-or-later" @@ -37,6 +37,12 @@ pre_build() { a2x -f manpage doc/qutebrowser.1.asciidoc } +do_check() { + # testing with pytest would be nice, but requires unpackaged plugins: + # pytest-bdd, pytest-benchmark, pytest-instafail, pytest-mock, pytest-qt, pytest-rerunfailures + : +} + post_install() { vman doc/qutebrowser.1 vinstall misc/org.qutebrowser.qutebrowser.desktop 644 usr/share/applications ```