1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-22 10:45:15 +03:00
aports/community/py3-webtest/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

41 lines
1.2 KiB
Text

# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-webtest
pkgver=3.0.0
pkgrel=3
pkgdesc="A Helper to test WSGI applications"
url="http://webtest.pythonpaste.org/"
arch="noarch"
license="MIT"
depends="python3 py3-beautifulsoup4 py3-waitress py3-webob"
makedepends="py3-setuptools"
checkdepends="py3-lxml py3-paste py3-pastedeploy py3-pytest"
source="https://pypi.io/packages/source/W/WebTest/WebTest-$pkgver.tar.gz"
replaces="py-webtest" # Backwards compat
provides="py-webtest=$pkgver-r$pkgrel" # Backwards compat
builddir="$srcdir"/WebTest-$pkgver
build() {
python3 setup.py build
}
check() {
# disable tests that requires wsgiproxy2 to avoid circular dependency
pytest -v \
--deselect tests/test_app.py \
--deselect tests/test_authorisation.py \
--deselect tests/test_debugapp.py \
--deselect tests/test_forms.py \
--deselect tests/test_lint.py \
--deselect tests/test_response.py
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
b97a6311d7e3bf653bec93c2390fb75c991d0dea6148680d8b6ff87861c130518a5d150dd157eab9b032b278566ad12c0ac8f5fc2ddbeba31e35de1e1f06f747 WebTest-3.0.0.tar.gz
"