diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py3-inflection/APKBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/testing/py3-inflection/APKBUILD b/testing/py3-inflection/APKBUILD index 3d0cada80d..7565e9b474 100644 --- a/testing/py3-inflection/APKBUILD +++ b/testing/py3-inflection/APKBUILD @@ -3,15 +3,14 @@ pkgname=py3-inflection _pkgname=inflection pkgver=0.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="A port of Ruby on Rails' inflector to Python" url="https://github.com/jpvanhal/inflection" arch="noarch" license="MIT" depends="python3" makedepends="py3-setuptools" -checkdepends="" -options="!check" # no test suite +checkdepends="py3-pytest" source="$_pkgname-$pkgver.tar.gz::https://github.com/jpvanhal/inflection/archive/$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver @@ -19,13 +18,15 @@ replaces="py-inflection" # Backkwards compatibility provides="py-inflection=$pkgver-r$pkgrel" # Backkwards compatibility build() { - cd "$builddir" - python3 setup.py --quiet build + python3 setup.py build +} + +check() { + py.test-3 } package() { - cd "$builddir" - python3 setup.py --quiet install --prefix=/usr --root="$pkgdir" + python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="2a69a6228f2d44a5afecbd3ef51a51b4d5f63f69ddc844f4abfd6f326cb25c518403e8c5b9f98589885777d41d8fea31bacab3a5a3ab80db411960238d2f49ad py-inflection-0.3.1.tar.gz" +sha512sums="2a69a6228f2d44a5afecbd3ef51a51b4d5f63f69ddc844f4abfd6f326cb25c518403e8c5b9f98589885777d41d8fea31bacab3a5a3ab80db411960238d2f49ad inflection-0.3.1.tar.gz" |