summaryrefslogtreecommitdiff
path: root/tests/test_lcov.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix lcov coverageIan Moore2023-03-141-1/+1
|
* style: use good style for annotated defaults parametersNed Batchelder2023-01-051-1/+1
|
* mypy: test_goldtest.py test_json.py test_lcov.py test_mixins.py ↵Ned Batchelder2023-01-051-10/+11
| | | | test_numbits.py test_oddball.py
* fix: lcov command didn't report a total, so --fail-under didn't workNed Batchelder2022-12-311-6/+13
|
* fix: `class` statements shouldn't be branches. #1449Ned Batchelder2022-09-261-4/+2
| | | | | | Revert "refactor: we no longer need to treat 'class' lines specially" This reverts commit 79f9f4575321fafc2ef770e3255f874db3d4b037.
* fix: 3.11.0b4 has 0-numbered lines. Fixes #1419Ned Batchelder2022-07-121-11/+25
| | | | | CPython added these lines in https://github.com/python/cpython/commit/1bfe83a114da3939c00746fc44dc5da7f56f525f
* style: cleanups after lcov, though more than just lcovNed Batchelder2022-01-221-154/+121
|
* fix: small fixes to lcov, and changes.rst mention.Ned Batchelder2022-01-221-5/+5
|
* feat: add "lcov" command for generating LCOV reportsBradley Burns2022-01-221-0/+308
* Add LCOV functionality into coverage.py * Add testing for the LCOV reporter * Add documentation for the LCOV reporter