summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* A better way to figure out that the version number has a letter in it.Ned Batchelder2010-10-031-1/+1
|
* Bump the version number.Ned Batchelder2010-10-031-3/+3
|
* Tweaks for the 3.4 release.Ned Batchelder2010-09-191-1/+1
|
* If you called sys.exit() with no argument, coverage.py got tangled. Thanks, ↵Ned Batchelder2010-09-181-2/+5
| | | | Brodie Rao.
* When showing debug data, do something visible with empty lists.Ned Batchelder2010-09-121-0/+2
|
* Sort the packages before creating the XML report. Fixes #88.Ned Batchelder2010-09-111-3/+4
|
* Bump version numberNed Batchelder2010-09-061-1/+1
|
* Format numbers with %g in xmlreport, since py3.2 uses more digits in str() ↵Ned Batchelder2010-09-061-16/+14
| | | | than previous Pythons, throwing off the gold files. We didn't need 9 digits of precision anyway...
* Silence one lint warningNed Batchelder2010-09-041-4/+3
|
* The XML report was missing an attribute Cobertura needed. Fixes #65 and #81.Ned Batchelder2010-09-042-10/+29
|
* Now that we include 0% files in the data, they aren't 'executed', they are ↵Ned Batchelder2010-09-032-3/+3
| | | | 'measured'.
* Now completely unexecuted source files can be included in reporting. ↵Ned Batchelder2010-09-032-0/+11
| | | | Specifying --source tells coverage.py where to search for files that haven't been executed.
* Remove unused importNed Batchelder2010-09-021-1/+0
|
* 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
|
* Some prep work for finding completely uncovered files.Ned Batchelder2010-08-302-1/+18
|
* Refactor the --omit and --include support during reporting, and add a test ↵Ned Batchelder2010-08-282-35/+31
| | | | for --include.
* 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-262-675/+675
|
* The thread-startup dance caused Thread.run() to not be measured. This fixes ↵Ned Batchelder2010-08-262-11/+65
| | | | 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-244-13/+48
| | | | 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
|
* Unify formatting of coverage percentages, and don't show zero or 100 as a ↵Ned Batchelder2010-08-225-12/+25
| | | | 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
|
* Trim up some linesNed Batchelder2010-08-201-2/+3
|
* Don't trace code if the reported filename is *.html. Fixes issue #82.Ned Batchelder2010-08-201-0/+8
|
* Get ready to have version-specific doc URLs.Ned Batchelder2010-08-201-1/+1
|
* Bump the version number to 3.4b1Ned Batchelder2010-08-201-1/+1
|
* 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.
* 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.
* This should have been hidden from the public API.Ned Batchelder2010-07-251-4/+4
|
* Remove the test runner plugins for now.Ned Batchelder2010-07-124-249/+0
|
* I guess this is the first opcode I've used that isn't available in all Pythons.Ned Batchelder2010-07-011-1/+7
|
* Newest pythons will execute __main__.py to execute a package.Ned Batchelder2010-07-011-0/+2
|
* Python 3.2 has a new opcode: SETUP_WITHNed Batchelder2010-07-011-1/+3
|
* Empty python files (like __init__.py) are shown as having zero statements, ↵Ned Batchelder2010-06-271-1/+4
| | | | not one. Fixes #1.
* Move the warnings to get them in more cases, and test one of those cases.Ned Batchelder2010-06-231-16/+26
|
* Add some __repr__ methods to help when debugging.Ned Batchelder2010-06-211-0/+6
|
* Isolate old-style singleton api tests.Ned Batchelder2010-06-181-2/+4
|
* Warnings during measurement.Ned Batchelder2010-06-181-1/+16
|
* Conform to recommended optparse use.Ned Batchelder2010-06-131-16/+16
|
* Yikes: when using the Python tracing function, we haven't been caching the ↵Ned Batchelder2010-06-131-1/+4
| | | | results of should_trace since <<changeset a480f40d1fa4>>
* Oops: don't use python 2.x print syntax.Ned Batchelder2010-06-131-1/+1
|
* The 'source' option is a list of directories or packages to limit coverage's ↵Ned Batchelder2010-06-135-37/+153
| | | | attention.
* Minor cosmeticsNed Batchelder2010-06-081-5/+1
|
* A cleaner way to decide on reports to createNed Batchelder2010-06-081-6/+5
|
* If there are no files to report, show a nice exception rather than fall into ↵Ned Batchelder2010-06-031-4/+8
| | | | a trap trying to subscript integers. Fixes #59.
* Quiet some lint warnings.Ned Batchelder2010-06-012-1/+5
|
* --cover-report wasn't defaulting properly.Ned Batchelder2010-06-011-1/+4
|