diff options
Diffstat (limited to 'testing/py3-pynvim')
-rw-r--r-- | testing/py3-pynvim/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/py3-pynvim/APKBUILD b/testing/py3-pynvim/APKBUILD index 63d2e55d05..f9b2b80d76 100644 --- a/testing/py3-pynvim/APKBUILD +++ b/testing/py3-pynvim/APKBUILD @@ -5,12 +5,13 @@ _pyname="pynvim" pkgver="0.4.0" pkgrel=1 pkgdesc="python client and plugin host for Nvim" +options="!check" # Tests fail on the builders url="https://github.com/neovim/pynvim" arch="noarch" license="Apache-2.0" depends="neovim python3 py3-msgpack py3-greenlet" makedepends="py3-setuptools" -checkdepends="py3-pytest py3-pytest-runner xvfb-run" +checkdepends="py3-pytest py3-pytest-runner" source="$_pyname-$pkgver.tar.gz::https://github.com/neovim/$_pyname/archive/$pkgver.tar.gz" builddir="$srcdir/$_pyname-$pkgver" @@ -19,7 +20,7 @@ build() { } check() { - xvfb-run python3 setup.py test + python3 setup.py test } package() { |