author | Felix Yan
<felixonmars@archlinux.org> 2019-08-19 04:12:34 UTC |
committer | Felix Yan
<felixonmars@archlinux.org> 2019-08-19 04:12:34 UTC |
parent | 87a13cd35a8b0958926b9e42c1a25c47ea259f4f |
PKGBUILD | +9 | -5 |
diff --git a/PKGBUILD b/PKGBUILD index 1c842ce..6bbccf9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,19 +2,22 @@ # Contributor: Felix Kaiser <felix.kaiser@fxkr.net> pkgname=python-pytest -pkgver=5.0.1 +pkgver=5.1.0 pkgrel=1 pkgdesc="Simple powerful testing with Python" arch=('any') license=('MIT') url="http://pytest.org/" depends=('python-py' 'python-setuptools' 'python-pluggy' 'python-attrs' 'python-more-itertools' - 'python-atomicwrites' 'python-wcwidth') + 'python-atomicwrites' 'python-wcwidth' 'python-importlib-metadata') makedepends=('python-setuptools-scm') -checkdepends=('lsof' 'python-nose' 'python-mock' 'python-tox' 'python-yaml' 'python-pytest-xdist' - 'python-twisted' 'python-requests' 'python-hypothesis') +checkdepends=('lsof' 'python-nose' 'python-mock' 'python-requests' 'python-hypothesis' + 'python-argcomplete' 'python-xmlschema' + # Unlisted, but actually used. Check again after a while: + 'python-numpy' 'python-twisted' 'python-pytest-xdist' 'python-decorator' + 'python-jinja' 'python-pexpect') source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest/archive/$pkgver.tar.gz") -sha512sums=('738f8a3b38ad36be6a66ad036999a9b78023c40dd6c9cb9bd01a023841011ae276fec556eb6dabf35638a6c7cf49304c140d90d5174ded710e0f51b51145e5cb') +sha512sums=('d6d112fe390d890ca58ba685024890f624456d5069f32637fc054db1f817609b48c01a42d3a97b362d6906b4705a37ebd73a270a4a86256f2ffa7b2a1b153aa6') export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver @@ -27,6 +30,7 @@ check() { # Skip test_collect_pyargs_with_testpaths because it mangles PYTHONPATH cd pytest-$pkgver + python setup.py egg_info PYTHONPATH="$PWD"/build/lib python src/pytest.py -k 'not test_collect_pyargs_with_testpaths' }