summaryrefslogtreecommitdiff
path: root/coverage/report.py
Commit message (Collapse)AuthorAgeFilesLines
* refactor: file names match the commands they implement betterNed Batchelder2023-05-131-100/+264
|
* fix: no need for terminal url except for html reportNed Batchelder2023-04-261-7/+1
|
* feat: add hyperlink to console output (#1613)Ricardo Newbery2023-04-261-1/+7
| | | | | * Add hyperlink to console output * python 3.7 compat version of detecting console tty
* fix: only write "Wrote report" message if report succeeded.Ned Batchelder2023-02-081-12/+11
| | | | | | | For example, see [issue 1554](https://github.com/nedbat/coveragepy/issues/1554) for the previous misleading behavior when the exception being raised wasn't a CoverageException.
* mypy: add annotate.py and jsonreport.pyNed Batchelder2022-12-311-1/+1
|
* mypy: add __init__.py, __main__.py, bytecode.py, context.py, exceptions.py, ↵Ned Batchelder2022-12-311-3/+30
| | | | report.py, and version.py
* mypy: control.py is checkedNed Batchelder2022-12-311-1/+1
|
* fix: use glob matching instead of fnmatch. #1407Ned Batchelder2022-10-301-3/+3
| | | | | | | I didn't understand that fnmatch considers the entire string to be a filename, even if it has slashes in it. This led to incorrect matching. Now we use our own implementation of glob matching to get the correct behavior.
* refactor: specialize exceptionsNed Batchelder2021-11-141-2/+2
| | | | | | CoverageException is fine as a base class, but not good to use for raising (and catching sometimes). Introduce specialized exceptions that allow third-party tools to integrate better.
* fix: warn about more source file problemsNed Batchelder2021-11-091-4/+7
|
* feat: xml and json say what they are doing, and -q quiets everything. #1254nedbat/dashqNed Batchelder2021-10-261-1/+4
|
* test: a true unit test for render_reportNed Batchelder2021-10-261-1/+1
|
* refactor: move exceptions to their own moduleNed Batchelder2021-05-021-1/+2
|
* refactor: pyupgrade --py36-plus coverage/*.pyNed Batchelder2021-05-021-1/+1
|
* refactor: remove code explicitly choosing between py2 and py3Ned Batchelder2021-05-011-5/+1
|
* debug: label each matcher with its roleNed Batchelder2021-04-111-2/+2
|
* refactor: remove unused code pathsNed Batchelder2021-02-281-18/+20
|
* Polish up cmd.rstNed Batchelder2019-12-081-1/+1
|
* Report file names the way Python does: '{}', not {!r}Ned Batchelder2019-11-251-1/+1
|
* No need for format indexes (mostly)Ned Batchelder2019-09-011-1/+1
|
* Create a JSON reportMatt Bachmann2019-08-311-1/+37
|
* No need to pass coverage/config separately everywhereNed Batchelder2019-06-171-1/+2
|
* Get rid of Reporter base classNed Batchelder2019-06-161-80/+42
|
* Refactor text reporting to use the same code paths as other reportsNed Batchelder2019-06-161-1/+2
|
* Remove a property that has been deprecated for three yearsNed Batchelder2019-06-161-10/+0
|
* Reporter base class shouldn't be responsible for directoriesNed Batchelder2019-06-151-9/+2
|
* Helpers for making directoriesNed Batchelder2018-10-211-3/+2
|
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* * --source and --include are mutually exclusive (take 2) #265loic@dachary.org2017-01-071-4/+4
| | | | | close #265 close #101
* Finish #396.Ned Batchelder2016-06-021-2/+2
|
* Emit a warning when an invalid file is detected with ignore_errors=true.Matthew Boehm2016-06-021-2/+5
| | | | | Previously, when an invalid file was encountered, it would be silently ignored.
* Clean upsNed Batchelder2016-05-201-0/+1
|
* Restore Reporter.file_reporters, with a deprecation warning.Ned Batchelder2016-05-201-1/+17
|
* This didn't need to be an attribute on the objectNed Batchelder2016-05-101-7/+6
|
* Protect ourselves from mock'ed os. #416Ned Batchelder2015-10-061-1/+3
|
* Use more compact code for includes and omitsNed Batchelder2015-09-221-17/+7
|
* Fix 'filename' to be 'file name' in English.Ned Batchelder2015-08-201-1/+1
|
* Remove should_be_python from the FileReporter interfaceNed Batchelder2015-08-091-0/+2
|
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-1/+4
|
* Remove every last trace of CodeUnit, and bring me a glass of vodkaNed Batchelder2015-02-221-22/+22
|
* Move code_unit_factory into CoverageNed Batchelder2015-01-011-5/+1
|
* Be a little clearer about when we expect one thing, and when we expect a listNed Batchelder2015-01-011-2/+4
|
* Progress on pluginsNed Batchelder2014-09-141-2/+2
|
* Rename extensions to plugins, since extensions reminds me of parts of filenamesNed Batchelder2014-08-201-1/+1
| | | | | --HG-- rename : coverage/extension.py => coverage/plugin.py
* Crazy-ugly start to extensions for Django and MakoNed Batchelder2014-07-041-1/+2
| | | | | --HG-- branch : django
* Avoid filling the fnmatch cacheNed Batchelder2014-06-021-10/+7
|
* Fix #163: embarassingly, the wildcards for include and omit didn't work ↵Ned Batchelder2012-10-291-2/+3
| | | | properly for reporting functions. This is now fixed.
* Test (and fix) the not-python errors in base Reporter.Ned Batchelder2012-04-201-1/+1
|
* Refactor reporters so the config is part of construction, and is then ↵Ned Batchelder2012-04-191-17/+14
| | | | available everywhere.
* Don't complain about files that can't be parsed as Python if they didn't ↵Ned Batchelder2012-04-181-1/+6
| | | | seem like Python at all. #82.