mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-07 20:02:11 +01:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-pytest-httpx
|
|
pkgver=0.30.0
|
|
pkgrel=1
|
|
pkgdesc="send responses to httpx"
|
|
url="https://colin-b.github.io/pytest_httpx/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="py3-httpx py3-pytest"
|
|
makedepends="py3-gpep517 py3-setuptools py3-wheel"
|
|
checkdepends="py3-pytest-asyncio"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/Colin-b/pytest_httpx/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/pytest_httpx-$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
#deselected tests fail on [b''] not equal to []
|
|
.testenv/bin/python3 -m pytest \
|
|
--deselect tests/test_httpx_async.py::test_default_response_streaming \
|
|
--deselect tests/test_httpx_sync.py::test_default_response_streaming
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" .dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
e3c20993921a5ae23a6dabcb68e495477fad32fdf69ce8a03b3a7fb5ab9732b364b5293c91fa7bb0eab7e57fe681a7ef118e8df1cdfc15ff012a6f5496207ec7 py3-pytest-httpx-0.30.0.tar.gz
|
|
"
|