diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2024-10-08 15:48:36 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-10-09 15:47:22 -0700 |
| commit | e0f7b621c6ab991d626a09732eb343d63d25dd78 (patch) | |
| tree | 937f639a076de0efc8cf653c84a1550095943a17 /meta-python/recipes-devtools/python/python3-gcovr_8.0.bb | |
| parent | b3b6f9b1046da9d1cf7be4abd5a08f542fb2c03b (diff) | |
| download | meta-openembedded-e0f7b621c6ab991d626a09732eb343d63d25dd78.tar.gz | |
python3-gcovr: Upgrade 7.2 -> 8.0
Upgrade to version 8.0:
- Changes related to added support of gcov JSON intermediate format
- Detect suspicious counter values in gcov output
- Add --html-single-page to create a single page report (static or
with Javascript)
- Upload standalone applications as release artifacts
- Add support for gcov JSON intermediate format
- Add Exclusion markers to exclude a while function
- Change sort order in JSON output files
- Add source exclusion markers to exclude source branch from target
line
- Implement consistent sorting of files with no lines, or one line
with zero coverage
- Use replacement value of 0 for function call count NAN %
- Fix erroneous deprecation warning
- Fix display filename in HTML report
- Fix bundle of standalone executable with Python 3.12
- Fix merging of function coverage data
- Fix inefficient regular expression
- Fix missing output of gcov if execution fails
- Move tests to directory in the root
- Add MacOs to the GitHub test workflow
- Remove test exclusions for MacOs and adapt tests and reference
data
- Link correct documentation version in copyright header
- Move tag creation before publish the distribution because tag
from pipeline doesn't trigger additional runs
- Fix scrubber for date in HTML test data
- Add test with Python 3.12
- Add gcc-14 to the test suite
- Skip coverage upload if executed in a fork
- Only execute pipeline if pushed on main and add button to execute
workflow manual
- Check spelling in test pipeline
- Merge the test and deploy workflow to a single CI workflow
- Add Codacy to CI workflow for tracking coverage and code quality
- Add bandit to the linters
- Remove Codecov upload from pipeline
- Add test with bazel tests
License-Update: Adapt to new format, remains BSD 3-Clause License
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gcovr_8.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-gcovr_8.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gcovr_8.0.bb b/meta-python/recipes-devtools/python/python3-gcovr_8.0.bb new file mode 100644 index 0000000000..27a4972ade --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-gcovr_8.0.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | DESCRIPTION = "generate GCC code coverage reports" | ||
| 2 | HOMEPAGE = "https://gcovr.com" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b307623752f2e1189349885b95b326e5" | ||
| 6 | |||
| 7 | SRC_URI = "git://github.com/gcovr/gcovr.git;branch=main;protocol=https" | ||
| 8 | SRCREV = "029de7050c8a7fffdaaee13cccd3939b29412190" | ||
| 9 | |||
| 10 | S = "${WORKDIR}/git" | ||
| 11 | |||
| 12 | inherit setuptools3 | ||
| 13 | |||
| 14 | RDEPENDS:${PN} += " \ | ||
| 15 | python3-colorlog \ | ||
| 16 | python3-jinja2 \ | ||
| 17 | python3-lxml \ | ||
| 18 | python3-multiprocessing \ | ||
| 19 | python3-pygments \ | ||
| 20 | python3-setuptools \ | ||
| 21 | " | ||
| 22 | |||
| 23 | BBCLASSEXTEND = "native nativesdk" | ||
