author | Felix Yan
<felixonmars@archlinux.org> 2016-10-17 03:29:48 UTC |
committer | Felix Yan
<felixonmars@archlinux.org> 2016-10-17 03:29:48 UTC |
parent | dad7a915f8a7d0d37feb643ac86e2613631e2d42 |
PKGBUILD | +8 | -13 |
diff --git a/PKGBUILD b/PKGBUILD index def0732..1316769 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,16 +4,16 @@ pkgbase=python-pytest pkgname=('python-pytest' 'python2-pytest') pkgver=3.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="Simple powerful testing with Python" arch=('any') license=('MIT') url="http://pytest.org/" makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py' 'git' 'python-pluggy' 'python2-pluggy') -checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' - 'python-yaml' 'python2-yaml' 'python-pexpect' 'python2-pexpect' - 'python-pytest-xdist' 'python2-pytest-xdist' 'python-twisted' 'python2-twisted' +checkdepends=('lsof' 'python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-tox' + 'python2-tox' 'python-yaml' 'python2-yaml' # 'python-pexpect' 'python2-pexpect' + 'python-pytest-xdist' 'python2-pytest-xdist' # 'python-twisted' 'python2-twisted' 'python-requests' 'python2-requests' 'python-hypothesis' 'python2-hypothesis') source=("git+https://github.com/pytest-dev/pytest.git#tag=$pkgver") sha512sums=('SKIP') @@ -34,15 +34,12 @@ build() { python2 setup.py build } -# Tests hang as of 3.0.0 -check_disabled() { +check() { cd "$srcdir"/pytest - # 1 xdist-related failure - python setup.py test || warning "Tests failed" + python setup.py test cd "$srcdir"/pytest-py2 - # 1 xdist-related failure - python2 setup.py test || warning "Tests failed" + python2 setup.py test } package_python-pytest() { @@ -51,8 +48,6 @@ package_python-pytest() { cd pytest python setup.py install --root="$pkgdir" --optimize=1 install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - - rm "$pkgdir"/usr/bin/pytest } package_python2-pytest() { @@ -63,5 +58,5 @@ package_python2-pytest() { install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE mv "$pkgdir"/usr/bin/py.test{,2} - rm "$pkgdir"/usr/bin/pytest + mv "$pkgdir"/usr/bin/pytest{,2} }