summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* fix name for module in __init__.py filefix_init_nameDirk Thomas2016-10-171-1/+4
|
* Use explicit integer division where we need integer divisionNed Batchelder2016-09-281-1/+1
|
* A better way to prevent call stacks during multi-line outputNed Batchelder2016-09-252-18/+31
|
* Change the debug=callers test to something that will be coverableNed Batchelder2016-09-241-1/+1
|
* Clean up and test the callers debugging infoNed Batchelder2016-09-241-4/+4
|
* Test short_stack, and give it a skip parameter for better output.Ned Batchelder2016-09-241-2/+5
|
* Derp: actually make config not write a call stack for each lineNed Batchelder2016-09-241-1/+1
|
* Don't print a call stack for each line in multi-line debug outputNed Batchelder2016-09-241-3/+9
|
* Add more debugging for thorny multiprocessing issuesNed Batchelder2016-09-233-1/+12
|
* Be absolutely explicit about non-hashability of some objects.Ned Batchelder2016-09-232-0/+4
| | | | From https://github.com/nedbat/coveragepy/pull/17
* Ensure random suffixes are different after forkingNed Batchelder2016-09-221-4/+2
|
* Omit needless whitespace in json-based data filesNed Batchelder2016-09-131-1/+1
|
* In Python 3.6, fnmatch changed a little bit. Adapt.Ned Batchelder2016-09-131-2/+5
|
* Use latest pylintNed Batchelder2016-08-071-1/+1
|
* Combining twice shouldn't lose data. #412, #516Ned Batchelder2016-08-073-4/+18
|
* Next version will be 4.3Ned Batchelder2016-08-071-1/+1
|
* Remove orphaned commented-out lineNed Batchelder2016-08-071-1/+0
|
* Built-in support for using aspectlib to debug execution.Ned Batchelder2016-08-062-0/+51
|
* Add support for PyPy3 5.2 alpha 1Ned Batchelder2016-08-031-6/+16
|
* Spelling fixesspellingVille Skytt?2016-07-311-1/+1
|
* Separate auto-loading from auto-saving, and don't auto-load for subprocessesNed Batchelder2016-07-291-5/+6
|
* Merged debounce canonicalizationNed Batchelder2016-07-283-2/+2
|\
| * Correct references to the debounce library file.Ben Finney2016-07-152-2/+2
| |
| * Name the debounce library to the canonical upstream filename.Ben Finney2016-07-151-0/+0
| |
* | Scooch version to 4.2.1a0Ned Batchelder2016-07-281-1/+1
| |
* | Paperwork for version 4.2Ned Batchelder2016-07-261-1/+1
| |
* | Merged in scop/coverage.py/pngs (pull request #86)Ned Batchelder2016-07-252-0/+0
|\ \ | | | | | | | | | Optimize PNGs
| * | Run *.png through zopflipngpngsVille Skytt?2016-07-202-0/+0
| |/
* | Merged in scop/coverage.py/html-filter (pull request #85)Ned Batchelder2016-07-253-8/+22
|\ \ | | | | | | | | | Speed up HTML filtering
| * | Set the rcfile for multiprocessing subprocessesNed Batchelder2016-07-243-8/+22
| |/
* | Speed up HTML filteringhtml-filterVille Skytt?2016-07-201-11/+9
|/
* Multiprocessing needs to communicate the rcfile down to the subprocessesNed Batchelder2016-07-132-16/+23
|
* Rename to multiproc.py, since it only does one thing.Ned Batchelder2016-07-122-1/+1
|
* Cover a few more lines in cmdline.pyNed Batchelder2016-07-101-9/+6
|
* Simplify debug.log by using an existing helperNed Batchelder2016-07-101-2/+1
|
* Fix metacov after a recent changeNed Batchelder2016-07-101-1/+2
| | | | | | The fix for subprocess measurement affecting coverage commands also made it so that metacoverage wouldn't record coverage for subprocesses. I have a feeling this isn't over yet...
* Add a helper function for debugging deep problemsNed Batchelder2016-07-101-0/+9
|
* Fix the check for default values of run-affecting options, and add a testNed Batchelder2016-07-091-1/+3
|
* Fail command lines that use multiprocessing and other options together. #495Ned Batchelder2016-07-091-0/+11
|
* Get rid of args_ok, it shrank to almost nothing.Ned Batchelder2016-07-091-16/+4
|
* Bump the version numberNed Batchelder2016-07-041-1/+1
|
* Make a beta of 4.2Ned Batchelder2016-07-041-1/+1
|
* Let the concurrency option be multi-valued. #484Ned Batchelder2016-07-044-17/+31
|
* Improve the --append help descriptionNed Batchelder2016-07-021-1/+1
|
* Update pylint to 1.5.6Ned Batchelder2016-06-255-5/+9
|
* Change an always-taken elif to an elseNed Batchelder2016-06-251-1/+2
|
* Combine no longer appends by defaultNed Batchelder2016-06-252-2/+8
| | | | | | | | | | | Combine used to always load an existing .coverage file. This lead to confusing results and extra tox-clean steps. Now the default is to not load the existing file, though a new --append switch on coverage combine gets you that behavior if you need it. This also pointed up an issue with concurrency=multiprocessing, which is that the child processes automatically used parallel=True, but the parent process did not. Now concurrency=multiprocessing implies parallel=True.
* Prevent subprocess measurement from measuring coverage commands. #492Ned Batchelder2016-06-241-2/+16
|
* No need to mention object.Ned Batchelder2016-06-231-1/+1
|
* A SimpleRepr class to inherit a simple __repr__ implementation.Ned Batchelder2016-06-232-2/+12
|