diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2022-01-31 13:39:42 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-02-03 08:40:20 -0800 |
commit | 71ea03d08d7a6e6443722bd67edc6e82d67283eb (patch) | |
tree | d731e6a17a9fd2c6ea993c763e08aa02bc4532f5 /meta-python | |
parent | cb0ed4cbf767cb20d7c946dcc7a91cd8ee2911e1 (diff) | |
download | meta-openembedded-71ea03d08d7a6e6443722bd67edc6e82d67283eb.tar.gz |
python3-coverage: Upgrade 6.2 -> 6.3
Upgrade to release 6.3:
- Added the lcov command to generate reports in LCOV format.
- the coverage data file can now be specified on the command line
with the --data-file option in any command that reads or writes
data. This is in addition to the existing COVERAGE_FILE
environment variable.
- coverage measurement data will now be written when a SIGTERM
signal is received by the process. This includes
Process.terminate, and other ways to terminate a process.
Currently this is only on Linux and Mac; Windows is not supported.
- Dropped support for Python 3.6, which reached end-of-life on
2021-12-23.
- Updated Python 3.11 support to 3.11.0a4.
- Fix: the coverage data file is now created in a more robust way,
to avoid problems when multiple processes are trying to write
data at once.
- Fix: a .gitignore file will only be written into the HTML report
output directory if the directory is empty. This should prevent
certain unfortunate accidents of writing the file where it is
not wanted.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-coverage_6.3.bb (renamed from meta-python/recipes-devtools/python/python3-coverage_6.2.bb) | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-coverage_6.2.bb b/meta-python/recipes-devtools/python/python3-coverage_6.3.bb index 6e080b00ca..0ed90281f9 100644 --- a/meta-python/recipes-devtools/python/python3-coverage_6.2.bb +++ b/meta-python/recipes-devtools/python/python3-coverage_6.3.bb | |||
@@ -3,10 +3,14 @@ HOMEPAGE = "https://coverage.readthedocs.io" | |||
3 | LICENSE = "Apache-2.0" | 3 | LICENSE = "Apache-2.0" |
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" | 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" |
5 | 5 | ||
6 | SRC_URI[sha256sum] = "e2cad8093172b7d1595b4ad66f24270808658e11acf43a8f95b41276162eb5b8" | 6 | SRC_URI[sha256sum] = "987a84ff98a309994ca77ed3cc4b92424f824278e48e4bf7d1bb79a63cfe2099" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-sqlite3 \ | 11 | ${PYTHON_PN}-sqlite3 \ |
12 | ${PYTHON_PN}-core \ | ||
13 | ${PYTHON_PN}-pprint \ | ||
14 | ${PYTHON_PN}-json \ | ||
15 | ${PYTHON_PN}-xml \ | ||
12 | " | 16 | " |