diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-05-08 18:18:21 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-05-08 21:45:54 -0700 |
| commit | a5bafa5b49814bcb2045ca3a9d367e331f87921b (patch) | |
| tree | d3e503f2152cf573161dfd00724ce72f12adbd40 /meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb | |
| parent | b1ec882cceffbc35a900098d8263c3f3d0d1ae92 (diff) | |
| download | meta-openembedded-a5bafa5b49814bcb2045ca3a9d367e331f87921b.tar.gz | |
python3-coverage: upgrade 7.2.3 -> 7.2.5
Changelog:
==========
- Fix: html_report() could fail with an AttributeError on isatty if run in an
unusual environment where sys.stdout had been replaced.
- Fix: with relative_files = true, specifying a specific file to include or
omit wouldn't work correctly (issue 1604).
- Fix: the XML report would have an incorrect <source> element when using
relative files and the source option ended with a slash (issue 1541).
- When the HTML report location is printed to the terminal, it's now a
terminal-compatible URL, so that you can click the location to open the HTML
file in your browser.
- Docs: a new :ref:'Migrating page <migrating>' with details about how to
migrate between major versions of coverage.py. It currently covers the
wildcard changes in 7.x.
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.2.5.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb b/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb new file mode 100644 index 0000000000..fa6c5203e6 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-coverage_7.2.5.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Code coverage measurement for Python" | ||
| 2 | HOMEPAGE = "https://coverage.readthedocs.io" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "f99ef080288f09ffc687423b8d60978cf3a465d3f404a18d1a05474bd8575a47" | ||
| 7 | |||
| 8 | inherit pypi setuptools3 | ||
| 9 | |||
| 10 | RDEPENDS:${PN} += " \ | ||
| 11 | ${PYTHON_PN}-sqlite3 \ | ||
| 12 | ${PYTHON_PN}-core \ | ||
| 13 | ${PYTHON_PN}-pprint \ | ||
| 14 | ${PYTHON_PN}-json \ | ||
| 15 | ${PYTHON_PN}-xml \ | ||
| 16 | ${PYTHON_PN}-crypt \ | ||
| 17 | ${PYTHON_PN}-shell \ | ||
| 18 | ${PYTHON_PN}-io \ | ||
| 19 | ${PYTHON_PN}-toml \ | ||
| 20 | ${PYTHON_PN}-multiprocessing \ | ||
| 21 | " | ||
