summaryrefslogtreecommitdiff
path: root/coverage/control.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Formalize some more debugging tools I've been keeping to the sideNed Batchelder2018-08-271-0/+4
|
* Better sys_info: pid, and a more understandable name.Ned Batchelder2018-08-261-2/+3
|
* A good way to solve the load-parallel pytestcov situation?Ned Batchelder2018-08-251-2/+5
|
* Fix the pytest-cov testNed Batchelder2018-08-241-0/+3
|
* Refactor initializationNed Batchelder2018-08-141-84/+108
| | | | | | | We need the data file suffix when the data file is created, not when write() is called. This required separating how different pieces were initialized. The old way was dumb anyway, since it (for example) created a Collector when reporting.
* Merge branch 'master' into nedbat/data-sqliteNed Batchelder2018-08-071-6/+0
|\
| * Remove use_cacheNed Batchelder2018-08-051-6/+0
| |
* | Pull combine_parallel_data out of CoverageDataNed Batchelder2018-08-041-2/+2
| |
* | CoverageData now also handles file operationsNed Batchelder2018-07-231-12/+8
|/
* Be stricter about self._dataNed Batchelder2018-07-081-20/+16
|
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* Slight refactor of how we look for configuration filesNed Batchelder2018-03-191-4/+5
|
* Private attributes should be indicated (debug)Ned Batchelder2018-03-131-19/+19
|
* Private attributes should be indicated (plugins)Ned Batchelder2018-03-131-11/+11
|
* Private attributes should be indicated, and same-named things should be ↵Ned Batchelder2018-03-131-12/+12
| | | | separated
* Private attributes should be indicatedNed Batchelder2018-03-131-17/+17
|
* Private attributes should be indicatedNed Batchelder2018-03-131-2/+2
|
* check_preimported=True controls whether coverage checks pre-imported files ↵Ned Batchelder2018-03-061-7/+12
| | | | when starting
* A more disciplined way to manage inoroutNed Batchelder2018-03-041-12/+13
| | | | | --HG-- branch : inorout
* More uniformityNed Batchelder2018-02-261-2/+1
| | | | | --HG-- branch : inorout
* Huge refactor of code out of control into inoroutNed Batchelder2018-02-251-436/+21
| | | | | --HG-- branch : inorout
* Refactoring to prep for more refactoringNed Batchelder2018-02-241-7/+7
|
* A new warning for files already imported before coverage startsNed Batchelder2018-02-201-24/+53
|
* Configurer plugins should be reported by --debug=sysNed Batchelder2018-02-101-7/+11
|
* Don't ask all plugins about executable files, only ask file tracersNed Batchelder2018-02-101-1/+1
|
* Oops, omitting inside a source package didn't work. Now it does. #638Ned Batchelder2018-02-101-3/+1
|
* A new kind of plug-in: configurers. #563Ned Batchelder2018-01-061-6/+15
|
* Remove an unneeded callNed Batchelder2017-12-231-3/+1
|
* Add the latest warning to the docs, and give them consistent punctuationNed Batchelder2017-10-241-1/+1
|
* Make the warning about --include and --source be a real warningNed Batchelder2017-10-241-1/+1
|
* Move the --source and --include check so it's only during 'run'Ned Batchelder2017-10-241-2/+3
|
* * --source and --include are mutually exclusive (take 2) #265loic@dachary.org2017-01-071-7/+10
| | | | | close #265 close #101
* Don't warn that namespace packages have no code. #572Ned Batchelder2017-05-041-12/+32
| | | | | --HG-- extra : amend_source : 68f6e0ab140e77ede11bb40dc2ac515cfb6f2333
* Update to pylint 1.7.1Ned Batchelder2017-04-221-1/+0
|
* Warnings can be disabledNed Batchelder2017-04-041-0/+4
|
* Add slugs to warnings in prep for suppressable warningsNed Batchelder2017-04-031-6/+14
|
* Make the use of coverage.files more uniformNed Batchelder2017-03-281-6/+7
|
* Clean up of the new plugin method. Thanks, Emil MadsenNed Batchelder2017-03-281-1/+2
|
* Allow plugins to report files they haven't executed.Ned Batchelder2017-03-281-5/+13
| | | | By Emil Madsen, from: https://github.com/nedbat/coveragepy/pull/28
* Big refactor of debug loggingNed Batchelder2017-03-221-5/+9
|
* Minimal IronPython support.Ned Batchelder2017-03-141-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 initializationNed Batchelder2017-03-041-2/+6
|
* Slightly better way to organize the condition on activityNed Batchelder2017-03-041-5/+10
|
* Collecting continues after saving data. #79 #448Ned Batchelder2017-03-031-6/+3
|
* Sometimes we match against files, sometimes directories.Ned Batchelder2017-02-211-23/+28
| | | | Also, skip our own test code when running tests.
* Fix this comment that was left behindNed Batchelder2017-02-031-2/+1
|
* Clean up for pull request #122Ned Batchelder2017-01-141-22/+27
|
* Merged in dachary/coverage.py/issue-426 (pull request #122)Ned Batchelder2017-01-141-39/+27
|\ | | | | | | make --source module do the same as --source directory #426
| * comment explaining the rationale of --source pkgloic@dachary.org2017-01-101-0/+6
| | | | | | | | | | --HG-- branch : issue-426
| * use the new source_for_file helper where it makes senseloic@dachary.org2017-01-101-2/+2
| | | | | | | | | | --HG-- branch : issue-426