Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mypy: add annotate.py and jsonreport.py | Ned Batchelder | 2022-12-31 | 1 | -7/+18 |
| | |||||
* | fix: keep negative arc values | Ned Batchelder | 2022-09-29 | 1 | -1/+1 |
| | |||||
* | feat: include branches taken and missed in JSON report. #1425 | Christoph Blessing | 2022-09-29 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | | | | | | Added more branches to the code whose coverage is checked. Add branch details to json report The json report now includes for each branch which branches have been executed, missed and what the percentage of covered branches was. Add exiting branch arc to json report test Update branch details format Executed and missing branch arcs are stored in the fields named 'executed_branches' and 'missing_branches' respectively. Both fields contain a list of two element lists. The first element represents the source line number and the second one the target line number. Exit branches have their target line number set to 0. Fix linting errors | ||||
* | style: parens should indent the same as their opening line | Ned Batchelder | 2022-05-01 | 1 | -1/+1 |
| | |||||
* | style: minor cleanups realized while reviewing a pull request | Ned Batchelder | 2022-01-05 | 1 | -2/+3 |
| | |||||
* | feat: xml and json say what they are doing, and -q quiets everything. #1254nedbat/dashq | Ned Batchelder | 2021-10-26 | 1 | -0/+2 |
| | |||||
* | fix: contexts_by_lineno now returns a true dict | Ned Batchelder | 2021-10-09 | 1 | -4/+2 |
| | |||||
* | refactor: remove globals from Numbers | Ned Batchelder | 2021-06-01 | 1 | -1/+1 |
| | |||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -2/+1 |
| | |||||
* | feat: percent_covered_display in the JSON reportnedbat/tweak-metacov | Ned Batchelder | 2021-03-02 | 1 | -0/+2 |
| | |||||
* | New JSON info should be reported on individual files also. | Ned Batchelder | 2020-04-11 | 1 | -0/+2 |
| | |||||
* | Extending jsonreport.py to also include all branch attributes | Salvatore Zagaria | 2020-04-07 | 1 | -0/+2 |
| | | | | Signed-off-by: Salvatore Zagaria <salvatore.zagaria@vector.com> | ||||
* | fix context reporting for relative_files | David Szotten | 2019-12-21 | 1 | -3/+2 |
| | | | | | | fix reporting of contexts when `relative_files = True` fixes #900 | ||||
* | Create a JSON report | Matt Bachmann | 2019-08-31 | 1 | -0/+100 |