mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
python3-google-auth: add ptest and update runtime dependencies
* Generally we want to keep images as small as possible. RDEPENDS should not contains nothing except what is absolutely needed for a recipe. * Tested on qemux86-64 and qemuarm64 * Add ptest into PTESTS_SLOW_META_PYTHON Ptest results: ============== qemux86-64: Testsuite summary TOTAL: 1074 PASS: 1074 SKIP: 0 XFAIL: 0 FAIL: 0 XPASS: 0 ERROR: 0 DURATION: 227 END: /usr/lib/python3-google-auth/ptest 2024-03-07T21:30 STOP: ptest-runner TOTAL: 1 FAIL: 0 qemuarm64: Testsuite summary TOTAL: 1074 PASS: 1074 SKIP: 0 XFAIL: 0 FAIL: 0 XPASS: 0 ERROR: 0 DURATION: 184 END: /usr/lib/python3-google-auth/ptest 2024-03-07T21:15 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
8a69bf4e36
commit
dd0a156fa8
|
|
@ -78,6 +78,7 @@ PTESTS_FAST_META_PYTHON = "\
|
|||
|
||||
PTESTS_SLOW_META_PYTHON = "\
|
||||
python3-arrow \
|
||||
python3-google-auth \
|
||||
python3-lz4 \
|
||||
python3-marshmallow \
|
||||
python3-pytest-localserver \
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
pytest --automake
|
||||
|
||||
|
|
@ -3,24 +3,39 @@ HOMEPAGE = "https://github.com/googleapis/google-auth-library-python"
|
|||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
|
||||
|
||||
inherit pypi setuptools3
|
||||
inherit pypi setuptools3 ptest
|
||||
|
||||
SRC_URI[sha256sum] = "34fc3046c257cedcf1622fc4b31fc2be7923d9b4d44973d481125ecc50d83885"
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
python3-asyncio \
|
||||
python3-datetime \
|
||||
python3-io \
|
||||
python3-json \
|
||||
python3-logging \
|
||||
python3-netclient \
|
||||
python3-numbers \
|
||||
SRC_URI += " \
|
||||
file://run-ptest \
|
||||
"
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
python3-aiohttp \
|
||||
python3-cachetools \
|
||||
python3-pyasn1-modules \
|
||||
python3-rsa \
|
||||
python3-six \
|
||||
RDEPENDS:${PN}-ptest += " \
|
||||
python3-cryptography \
|
||||
python3-flask \
|
||||
python3-freezegun \
|
||||
python3-grpcio \
|
||||
python3-mock \
|
||||
python3-oauth2client \
|
||||
python3-pyopenssl \
|
||||
python3-pytest \
|
||||
python3-pytest-localserver \
|
||||
python3-pyu2f \
|
||||
python3-requests \
|
||||
python3-responses \
|
||||
python3-unittest-automake-output \
|
||||
python3-unixadmin \
|
||||
"
|
||||
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}/tests
|
||||
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
||||
}
|
||||
|
||||
RDEPENDS:${PN} += "\
|
||||
python3-cachetools \
|
||||
python3-json \
|
||||
python3-pyasn1-modules \
|
||||
python3-rsa \
|
||||
"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user