Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat: xml and json say what they are doing, and -q quiets everything. #1254nedbat/dashq | Ned Batchelder | 2021-10-26 | 1 | -1/+4 |
| | |||||
* | test: a true unit test for render_report | Ned Batchelder | 2021-10-26 | 1 | -1/+1 |
| | |||||
* | refactor: move exceptions to their own module | Ned Batchelder | 2021-05-02 | 1 | -1/+2 |
| | |||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -1/+1 |
| | |||||
* | refactor: remove code explicitly choosing between py2 and py3 | Ned Batchelder | 2021-05-01 | 1 | -5/+1 |
| | |||||
* | debug: label each matcher with its role | Ned Batchelder | 2021-04-11 | 1 | -2/+2 |
| | |||||
* | refactor: remove unused code paths | Ned Batchelder | 2021-02-28 | 1 | -18/+20 |
| | |||||
* | Polish up cmd.rst | Ned Batchelder | 2019-12-08 | 1 | -1/+1 |
| | |||||
* | Report file names the way Python does: '{}', not {!r} | Ned Batchelder | 2019-11-25 | 1 | -1/+1 |
| | |||||
* | No need for format indexes (mostly) | Ned Batchelder | 2019-09-01 | 1 | -1/+1 |
| | |||||
* | Create a JSON report | Matt Bachmann | 2019-08-31 | 1 | -1/+37 |
| | |||||
* | No need to pass coverage/config separately everywhere | Ned Batchelder | 2019-06-17 | 1 | -1/+2 |
| | |||||
* | Get rid of Reporter base class | Ned Batchelder | 2019-06-16 | 1 | -80/+42 |
| | |||||
* | Refactor text reporting to use the same code paths as other reports | Ned Batchelder | 2019-06-16 | 1 | -1/+2 |
| | |||||
* | Remove a property that has been deprecated for three years | Ned Batchelder | 2019-06-16 | 1 | -10/+0 |
| | |||||
* | Reporter base class shouldn't be responsible for directories | Ned Batchelder | 2019-06-15 | 1 | -9/+2 |
| | |||||
* | Helpers for making directories | Ned Batchelder | 2018-10-21 | 1 | -3/+2 |
| | |||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | * --source and --include are mutually exclusive (take 2) #265 | loic@dachary.org | 2017-01-07 | 1 | -4/+4 |
| | | | | | close #265 close #101 | ||||
* | Finish #396. | Ned Batchelder | 2016-06-02 | 1 | -2/+2 |
| | |||||
* | Emit a warning when an invalid file is detected with ignore_errors=true. | Matthew Boehm | 2016-06-02 | 1 | -2/+5 |
| | | | | | Previously, when an invalid file was encountered, it would be silently ignored. | ||||
* | Clean ups | Ned Batchelder | 2016-05-20 | 1 | -0/+1 |
| | |||||
* | Restore Reporter.file_reporters, with a deprecation warning. | Ned Batchelder | 2016-05-20 | 1 | -1/+17 |
| | |||||
* | This didn't need to be an attribute on the object | Ned Batchelder | 2016-05-10 | 1 | -7/+6 |
| | |||||
* | Protect ourselves from mock'ed os. #416 | Ned Batchelder | 2015-10-06 | 1 | -1/+3 |
| | |||||
* | Use more compact code for includes and omits | Ned Batchelder | 2015-09-22 | 1 | -17/+7 |
| | |||||
* | Fix 'filename' to be 'file name' in English. | Ned Batchelder | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Remove should_be_python from the FileReporter interface | Ned Batchelder | 2015-08-09 | 1 | -0/+2 |
| | |||||
* | Add license mention to the top of all files. #313. | Ned Batchelder | 2015-07-24 | 1 | -1/+4 |
| | |||||
* | Remove every last trace of CodeUnit, and bring me a glass of vodka | Ned Batchelder | 2015-02-22 | 1 | -22/+22 |
| | |||||
* | Move code_unit_factory into Coverage | Ned Batchelder | 2015-01-01 | 1 | -5/+1 |
| | |||||
* | Be a little clearer about when we expect one thing, and when we expect a list | Ned Batchelder | 2015-01-01 | 1 | -2/+4 |
| | |||||
* | Progress on plugins | Ned Batchelder | 2014-09-14 | 1 | -2/+2 |
| | |||||
* | Rename extensions to plugins, since extensions reminds me of parts of filenames | Ned Batchelder | 2014-08-20 | 1 | -1/+1 |
| | | | | | --HG-- rename : coverage/extension.py => coverage/plugin.py | ||||
* | Crazy-ugly start to extensions for Django and Mako | Ned Batchelder | 2014-07-04 | 1 | -1/+2 |
| | | | | | --HG-- branch : django | ||||
* | Avoid filling the fnmatch cache | Ned Batchelder | 2014-06-02 | 1 | -10/+7 |
| | |||||
* | Fix #163: embarassingly, the wildcards for include and omit didn't work ↵ | Ned Batchelder | 2012-10-29 | 1 | -2/+3 |
| | | | | properly for reporting functions. This is now fixed. | ||||
* | Test (and fix) the not-python errors in base Reporter. | Ned Batchelder | 2012-04-20 | 1 | -1/+1 |
| | |||||
* | Refactor reporters so the config is part of construction, and is then ↵ | Ned Batchelder | 2012-04-19 | 1 | -17/+14 |
| | | | | available everywhere. | ||||
* | Don't complain about files that can't be parsed as Python if they didn't ↵ | Ned Batchelder | 2012-04-18 | 1 | -1/+6 |
| | | | | seem like Python at all. #82. | ||||
* | Deal more gracefully with unexpectedly-not-python source during reporting. | Ned Batchelder | 2011-04-08 | 1 | -2/+2 |
| | |||||
* | Incremental HTML generation. Some cleanup would be good. | Ned Batchelder | 2011-03-24 | 1 | -1/+7 |
| | |||||
* | Now that we include 0% files in the data, they aren't 'executed', they are ↵ | Ned Batchelder | 2010-09-03 | 1 | -1/+1 |
| | | | | 'measured'. | ||||
* | Remove unused import | Ned Batchelder | 2010-09-02 | 1 | -1/+0 |
| | |||||
* | Pass config objects around to limit the sprawl of argument lists. | Ned Batchelder | 2010-09-02 | 1 | -16/+10 |
| | |||||
* | Refactor the --omit and --include support during reporting, and add a test ↵ | Ned Batchelder | 2010-08-28 | 1 | -4/+28 |
| | | | | for --include. | ||||
* | Omit and include are now filename patterns rather than prefixes. BACKWARD ↵ | Ned Batchelder | 2010-05-23 | 1 | -10/+8 |
| | | | | INCOMPATIBLE change. | ||||
* | Format the code to pylint's liking, and fix up the docstrings for omit and ↵ | Ned Batchelder | 2010-05-15 | 1 | -11/+10 |
| | | | | include. | ||||
* | Change 'requires' to 'include'. | Ned Batchelder | 2010-05-15 | 1 | -8/+8 |
| | |||||
* | add a --require option to specify directories which are required to be at ↵ | Zooko Ofsimplegeo | 2010-04-19 | 1 | -5/+14 |
| | | | | | | | | | the beginning of the path for any file that is going to be included in code coverage make the --omit and --require options apply to code coverage generation as well as to reporting; This speeds up tests from 6 seconds to 1 second on my system, as well as making the resulting .coverage db include *only* the code that I care about, which helps with my code coverage progression/regression tool. --HG-- extra : transplant_source : %1F.4%81%E8%DA%0B%D0%D5%9D%89%DE%E1vY%E6%CD%1A%EB%C9 |