summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Now that we include 0% files in the data, they aren't 'executed', they are ↵Ned Batchelder2010-09-034-13/+13
| | | | 'measured'.
* Now completely unexecuted source files can be included in reporting. ↵Ned Batchelder2010-09-036-2/+29
| | | | Specifying --source tells coverage.py where to search for files that haven't been executed.
* Remove unused importNed Batchelder2010-09-021-1/+0
|
* Don't search the build directoryNed Batchelder2010-09-021-0/+1
|
* Pass config objects around to limit the sprawl of argument lists.Ned Batchelder2010-09-026-50/+30
|
* Make __main__.py compatible with all our Python versions. Fixes #86.Ned Batchelder2010-09-011-2/+3
|
* 2.3 needs backward support for setNed Batchelder2010-08-311-0/+1
|
* Too many files start with 'cov', rename a few.Ned Batchelder2010-08-313-7/+7
|
* Some prep work for finding completely uncovered files.Ned Batchelder2010-08-308-1/+55
|
* More files not to searchNed Batchelder2010-08-291-1/+2
|
* Refactor the --omit and --include support during reporting, and add a test ↵Ned Batchelder2010-08-283-35/+47
| | | | for --include.
* Don't complain about multiple statements on a line.Ned Batchelder2010-08-281-1/+2
|
* There aren't many places I like putting a function body on the def line, but ↵Ned Batchelder2010-08-281-17/+6
| | | | this looks better.
* Correct case.Ned Batchelder2010-08-281-1/+1
|
* Clean up lint.Ned Batchelder2010-08-264-677/+677
|
* The thread-startup dance caused Thread.run() to not be measured. This fixes ↵Ned Batchelder2010-08-264-12/+90
| | | | it, I hope without introducing too much more new code. Fixes #85.
* New config setting: [report]precision lets you specify the number of digits ↵Ned Batchelder2010-08-248-13/+83
| | | | after the decimal point in coverage percentages. Finishes issue #16.
* Add a comment about the wacky object attributes for modules.Ned Batchelder2010-08-231-0/+4
|
* A file to control my search tool.Ned Batchelder2010-08-221-0/+7
|
* Unify formatting of coverage percentages, and don't show zero or 100 as a ↵Ned Batchelder2010-08-2210-15/+49
| | | | result of rounding. Fixes #41 and #70.
* Bump version number, and don't use version-specific URLs for released versions.Ned Batchelder2010-08-221-2/+5
|
* Coverage 3.4b1Ned Batchelder2010-08-210-0/+0
|
* Include the version number in the beta warning box.coverage-3.4b1Ned Batchelder2010-08-212-3/+3
|
* Beta docs will require tweaking the .htaccess on nedbatchelder.comNed Batchelder2010-08-211-0/+1
|
* Change how the beta docs are made, and make them more beta-yNed Batchelder2010-08-213-9/+15
|
* Trim up some linesNed Batchelder2010-08-202-3/+4
|
* Don't trace code if the reported filename is *.html. Fixes issue #82.Ned Batchelder2010-08-202-0/+13
|
* Make it possible to have beta docs in a different place than the real docsNed Batchelder2010-08-204-19/+25
|
* Doc tweaks for 3.4b1Ned Batchelder2010-08-203-6/+9
|
* Get ready to have version-specific doc URLs.Ned Batchelder2010-08-207-3/+12
|
* Bump the version number to 3.4b1Ned Batchelder2010-08-204-6/+8
|
* Working on getting coverage to measure itself again.Ned Batchelder2010-08-072-2/+9
|
* Use some strange self.os stuff to hold references to modules so we'll have ↵Ned Batchelder2010-08-072-7/+17
| | | | them available when called from atexit(). Fixes issue #71, I think.
* Clean up whitespace.Ned Batchelder2010-08-011-1/+1
|
* Python 3.2 now puts .pyc in __pycache__ directories.Ned Batchelder2010-08-011-0/+1
|
* Updates for 3.2Ned Batchelder2010-08-014-14/+10
|
* Python 3.2 doesn't make .pyc files in the local dir any more, so be more ↵Ned Batchelder2010-08-011-13/+29
| | | | flexible.
* Python 3.2 doctest expects stdout to have an encoding.Ned Batchelder2010-08-011-2/+4
|
* Virtualenv3 moves random.py into the virtualenv, so we can't use it as the ↵Ned Batchelder2010-08-011-10/+10
| | | | control any more. Just examine all the modules we import, and use all their locations as the pylib directories.
* Windows kits need setuptools. Fixes #18.Ned Batchelder2010-07-262-7/+35
|
* Start of a standalone installation page.Ned Batchelder2010-07-253-33/+78
|
* Reduce the noise about bugs in the doc changes page.Ned Batchelder2010-07-251-20/+0
|
* Update the history timestamps.Ned Batchelder2010-07-258-0/+20
|
* Update the doc changes page.Ned Batchelder2010-07-251-0/+74
|
* Finish doc'ing the new source code options.Ned Batchelder2010-07-255-37/+51
|
* Lots of doc updates, more to come.Ned Batchelder2010-07-258-38/+169
|
* Wrap a long line.Ned Batchelder2010-07-251-2/+3
|
* This should have been hidden from the public API.Ned Batchelder2010-07-251-4/+4
|
* Update changesNed Batchelder2010-07-121-6/+2
|
* Fix this test: can't guarantee the order of stdout and stderr in the output.Ned Batchelder2010-07-121-6/+3
|