Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Remove use_cache | Ned Batchelder | 2018-08-05 | 1 | -6/+0 | |
| | | ||||||
* | | Pull combine_parallel_data out of CoverageData | Ned Batchelder | 2018-08-04 | 1 | -2/+2 | |
| | | ||||||
* | | CoverageData now also handles file operations | Ned Batchelder | 2018-07-23 | 1 | -12/+8 | |
|/ | ||||||
* | Be stricter about self._data | Ned Batchelder | 2018-07-08 | 1 | -20/+16 | |
| | ||||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 | |
| | ||||||
* | Slight refactor of how we look for configuration files | Ned Batchelder | 2018-03-19 | 1 | -4/+5 | |
| | ||||||
* | Private attributes should be indicated (debug) | Ned Batchelder | 2018-03-13 | 1 | -19/+19 | |
| | ||||||
* | Private attributes should be indicated (plugins) | Ned Batchelder | 2018-03-13 | 1 | -11/+11 | |
| | ||||||
* | Private attributes should be indicated, and same-named things should be ↵ | Ned Batchelder | 2018-03-13 | 1 | -12/+12 | |
| | | | | separated | |||||
* | Private attributes should be indicated | Ned Batchelder | 2018-03-13 | 1 | -17/+17 | |
| | ||||||
* | Private attributes should be indicated | Ned Batchelder | 2018-03-13 | 1 | -2/+2 | |
| | ||||||
* | check_preimported=True controls whether coverage checks pre-imported files ↵ | Ned Batchelder | 2018-03-06 | 1 | -7/+12 | |
| | | | | when starting | |||||
* | A more disciplined way to manage inorout | Ned Batchelder | 2018-03-04 | 1 | -12/+13 | |
| | | | | | --HG-- branch : inorout | |||||
* | More uniformity | Ned Batchelder | 2018-02-26 | 1 | -2/+1 | |
| | | | | | --HG-- branch : inorout | |||||
* | Huge refactor of code out of control into inorout | Ned Batchelder | 2018-02-25 | 1 | -436/+21 | |
| | | | | | --HG-- branch : inorout | |||||
* | Refactoring to prep for more refactoring | Ned Batchelder | 2018-02-24 | 1 | -7/+7 | |
| | ||||||
* | A new warning for files already imported before coverage starts | Ned Batchelder | 2018-02-20 | 1 | -24/+53 | |
| | ||||||
* | Configurer plugins should be reported by --debug=sys | Ned Batchelder | 2018-02-10 | 1 | -7/+11 | |
| | ||||||
* | Don't ask all plugins about executable files, only ask file tracers | Ned Batchelder | 2018-02-10 | 1 | -1/+1 | |
| | ||||||
* | Oops, omitting inside a source package didn't work. Now it does. #638 | Ned Batchelder | 2018-02-10 | 1 | -3/+1 | |
| | ||||||
* | A new kind of plug-in: configurers. #563 | Ned Batchelder | 2018-01-06 | 1 | -6/+15 | |
| | ||||||
* | Remove an unneeded call | Ned Batchelder | 2017-12-23 | 1 | -3/+1 | |
| | ||||||
* | Add the latest warning to the docs, and give them consistent punctuation | Ned Batchelder | 2017-10-24 | 1 | -1/+1 | |
| | ||||||
* | Make the warning about --include and --source be a real warning | Ned Batchelder | 2017-10-24 | 1 | -1/+1 | |
| | ||||||
* | Move the --source and --include check so it's only during 'run' | Ned Batchelder | 2017-10-24 | 1 | -2/+3 | |
| | ||||||
* | * --source and --include are mutually exclusive (take 2) #265 | loic@dachary.org | 2017-01-07 | 1 | -7/+10 | |
| | | | | | close #265 close #101 | |||||
* | Don't warn that namespace packages have no code. #572 | Ned Batchelder | 2017-05-04 | 1 | -12/+32 | |
| | | | | | --HG-- extra : amend_source : 68f6e0ab140e77ede11bb40dc2ac515cfb6f2333 | |||||
* | Update to pylint 1.7.1 | Ned Batchelder | 2017-04-22 | 1 | -1/+0 | |
| | ||||||
* | Warnings can be disabled | Ned Batchelder | 2017-04-04 | 1 | -0/+4 | |
| | ||||||
* | Add slugs to warnings in prep for suppressable warnings | Ned Batchelder | 2017-04-03 | 1 | -6/+14 | |
| | ||||||
* | Make the use of coverage.files more uniform | Ned Batchelder | 2017-03-28 | 1 | -6/+7 | |
| | ||||||
* | Clean up of the new plugin method. Thanks, Emil Madsen | Ned Batchelder | 2017-03-28 | 1 | -1/+2 | |
| | ||||||
* | Allow plugins to report files they haven't executed. | Ned Batchelder | 2017-03-28 | 1 | -5/+13 | |
| | | | | By Emil Madsen, from: https://github.com/nedbat/coveragepy/pull/28 | |||||
* | Big refactor of debug logging | Ned Batchelder | 2017-03-22 | 1 | -5/+9 | |
| | ||||||
* | Minimal IronPython support. | Ned Batchelder | 2017-03-14 | 1 | -1/+5 | |
| | | | | | IronPython is weird: 2.7.7 has "str is unicode", and unicode.encode produces unicode! f_lasti is missing, and frame globals are missing. | |||||
* | Small steps in refactoring initialization | Ned Batchelder | 2017-03-04 | 1 | -2/+6 | |
| | ||||||
* | Slightly better way to organize the condition on activity | Ned Batchelder | 2017-03-04 | 1 | -5/+10 | |
| | ||||||
* | Collecting continues after saving data. #79 #448 | Ned Batchelder | 2017-03-03 | 1 | -6/+3 | |
| | ||||||
* | Sometimes we match against files, sometimes directories. | Ned Batchelder | 2017-02-21 | 1 | -23/+28 | |
| | | | | Also, skip our own test code when running tests. | |||||
* | Fix this comment that was left behind | Ned Batchelder | 2017-02-03 | 1 | -2/+1 | |
| | ||||||
* | Clean up for pull request #122 | Ned Batchelder | 2017-01-14 | 1 | -22/+27 | |
| | ||||||
* | Merged in dachary/coverage.py/issue-426 (pull request #122) | Ned Batchelder | 2017-01-14 | 1 | -39/+27 | |
|\ | | | | | | | make --source module do the same as --source directory #426 | |||||
| * | comment explaining the rationale of --source pkg | loic@dachary.org | 2017-01-10 | 1 | -0/+6 | |
| | | | | | | | | | | --HG-- branch : issue-426 | |||||
| * | use the new source_for_file helper where it makes sense | loic@dachary.org | 2017-01-10 | 1 | -2/+2 | |
| | | | | | | | | | | --HG-- branch : issue-426 | |||||
| * | source_for_file helper with unit tests | loic@dachary.org | 2017-01-10 | 1 | -2/+2 | |
| | | | | | | | | | | --HG-- branch : issue-426 | |||||
| * | move _source_for_file to python.py | loic@dachary.org | 2017-01-10 | 1 | -32/+0 | |
| | | | | | | | | | | --HG-- branch : issue-426 | |||||
| * | make --source module do the same as --source directory #426 | loic@dachary.org | 2017-01-06 | 1 | -5/+19 | |
| | | | | | | | | | | | | | | | | | | | | | | | | The --source argument can either be a module or a directory. The user expects that it behaves the same in both cases. Make sure the module is recursively explored so that files that are not run show in the coverage report. close #426 --HG-- branch : issue-426 | |||||
* | | Jython has no multiprocessing module | Ned Batchelder | 2017-01-13 | 1 | -1/+10 | |
|/ | ||||||
* | control.Coverage._init: check "source" is a directory, not just it exists; ↵ | Cosimo Lupo | 2016-12-25 | 1 | -1/+1 | |
| | | | | | | | there could be a file with that name --HG-- branch : check-source-isdir | |||||
* | implement --skip-covered for html report #433 | loic@dachary.org | 2016-12-18 | 1 | -1/+3 | |
| | | | | | | | close #433 --HG-- branch : issue-433-2 |