mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-01 16:10:25 +00:00
Example output: |root@qemux86-64:~# ptest-runner python3-glances |START: ptest-runner |2026-08-14T13:48 |BEGIN: /usr/lib/python3-glances/ptest |============================= test session starts ============================== |platform linux -- Python 3.14.7, pytest-9.1.1, pluggy-1.6.0 |rootdir: /usr/lib/python3-glances/ptest |plugins: putao-0.4, anyio-4.14.2, inline-snapshot-0.35.3 |collected 37 items | |tests/test_core.py ..................................... [100%] | |============================== 37 passed in 8.02s ============================== |DURATION: 8 |END: /usr/lib/python3-glances/ptest |2026-08-14T13:48 |STOP: ptest-runner |TOTAL: 1 FAIL: 0 |root@qemux86-64:~# Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
39 lines
974 B
BlitzBasic
39 lines
974 B
BlitzBasic
SUMMARY = "Glances is an open-source system cross-platform monitoring tool."
|
|
HOMEPAGE = "https://nicolargo.github.io/glances/"
|
|
LICENSE = "LGPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=852ecadc0ac7e6f4d7144d5544a3815b"
|
|
|
|
SRC_URI[sha256sum] = "736faa7faea3bcd58afffd6443974b4ed4b498627a71ce5d6c9640b7b5ddbd94"
|
|
|
|
PYPI_PACKAGE = "glances"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest-python-pytest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
# psutil/jinja2/packaging are oe-core; fastapi/uvicorn/defusedxml are
|
|
# meta-python.
|
|
RDEPENDS:${PN} += " \
|
|
python3-psutil \
|
|
python3-packaging \
|
|
python3-defusedxml \
|
|
python3-fastapi \
|
|
python3-uvicorn \
|
|
python3-jinja2 \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-asyncio \
|
|
python3-multiprocessing \
|
|
python3-netclient \
|
|
python3-xml \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-requests \
|
|
"
|
|
|
|
# Optional fast-JSON accelerator glances uses if present.
|
|
RRECOMMENDS:${PN} += "python3-orjson"
|