summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-11-25 17:11:46 +0800
committerKhem Raj <raj.khem@gmail.com>2025-11-25 07:44:42 -0800
commit7433f87f3283bea65cab270ac6d5058eeb2a19a2 (patch)
tree726eaf3ea5d30a1eec337a037834bb18ed91e5d0 /meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb
parentab1216dde2046327c2fc66a1e64e322712235902 (diff)
downloadmeta-openembedded-7433f87f3283bea65cab270ac6d5058eeb2a19a2.tar.gz
python3-coverage: upgrade 7.11.3 -> 7.12.0
Changelog: ============ - The HTML report now shows separate coverage totals for statements and branches, as well as the usual combined coverage percentage. - The JSON report now includes separate coverage totals for statements and branches - Fix: except* clauses were not handled properly under the "sysmon" measurement core, causing KeyError exceptions - Fix: we now defend against aggressive mocking of open() that could cause errors inside coverage.py. - Fix: in unusual cases where a test suite intentionally exhausts the system's file descriptors to test handling errors in open(), coverage.py would fail when trying to open source files - A small tweak to the HTML report: file paths now use thin spaces around slashes to make them easier to read. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb b/meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb
new file mode 100644
index 0000000000..b3a3a4e7ef
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-coverage_7.12.0.bb
@@ -0,0 +1,22 @@
1SUMMARY = "Code coverage measurement for Python"
2HOMEPAGE = "https://coverage.readthedocs.io"
3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
5
6SRC_URI[sha256sum] = "fc11e0a4e372cb5f282f16ef90d4a585034050ccda536451901abfb19a57f40c"
7
8inherit pypi python_setuptools_build_meta
9
10RDEPENDS:${PN} += " \
11 python3-crypt \
12 python3-io \
13 python3-json \
14 python3-multiprocessing \
15 python3-pprint \
16 python3-shell \
17 python3-sqlite3 \
18 python3-tomllib \
19 python3-xml \
20"
21
22BBCLASSEXTEND = "native nativesdk"