Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Bump version number | Ned Batchelder | 2010-09-06 | 2 | -2/+2 | |
| | ||||||
* | Fix a typo | Ned Batchelder | 2010-09-06 | 1 | -1/+1 | |
| | ||||||
* | Coverage 3.4b2 | Ned Batchelder | 2010-09-06 | 1 | -0/+1 | |
| | ||||||
* | Hmm, not sure why it worked yesterday, but this is better.coverage-3.4b2 | Ned Batchelder | 2010-09-06 | 1 | -3/+3 | |
| | ||||||
* | Doc tweaks for 3.4b2 | Ned Batchelder | 2010-09-06 | 6 | -18/+43 | |
| | ||||||
* | Format numbers with %g in xmlreport, since py3.2 uses more digits in str() ↵ | Ned Batchelder | 2010-09-06 | 3 | -21/+19 | |
| | | | | than previous Pythons, throwing off the gold files. We didn't need 9 digits of precision anyway... | |||||
* | Silence one lint warning | Ned Batchelder | 2010-09-04 | 1 | -4/+3 | |
| | ||||||
* | The XML report was missing an attribute Cobertura needed. Fixes #65 and #81. | Ned Batchelder | 2010-09-04 | 4 | -18/+43 | |
| | ||||||
* | A custom setup.py command to fix tarfile permissions. Fixes #54. | Ned Batchelder | 2010-09-04 | 5 | -5/+68 | |
| | ||||||
* | Now that we include 0% files in the data, they aren't 'executed', they are ↵ | Ned Batchelder | 2010-09-03 | 4 | -13/+13 | |
| | | | | 'measured'. | |||||
* | Now completely unexecuted source files can be included in reporting. ↵ | Ned Batchelder | 2010-09-03 | 6 | -2/+29 | |
| | | | | Specifying --source tells coverage.py where to search for files that haven't been executed. | |||||
* | Remove unused import | Ned Batchelder | 2010-09-02 | 1 | -1/+0 | |
| | ||||||
* | Don't search the build directory | Ned Batchelder | 2010-09-02 | 1 | -0/+1 | |
| | ||||||
* | Pass config objects around to limit the sprawl of argument lists. | Ned Batchelder | 2010-09-02 | 6 | -50/+30 | |
| | ||||||
* | Make __main__.py compatible with all our Python versions. Fixes #86. | Ned Batchelder | 2010-09-01 | 1 | -2/+3 | |
| | ||||||
* | 2.3 needs backward support for set | Ned Batchelder | 2010-08-31 | 1 | -0/+1 | |
| | ||||||
* | Too many files start with 'cov', rename a few. | Ned Batchelder | 2010-08-31 | 3 | -7/+7 | |
| | | | | | | --HG-- rename : covcov.ini => metacov.ini rename : test/coverage_coverage.py => test/meta_coverage.py | |||||
* | Some prep work for finding completely uncovered files. | Ned Batchelder | 2010-08-30 | 8 | -1/+55 | |
| | ||||||
* | More files not to search | Ned Batchelder | 2010-08-29 | 1 | -1/+2 | |
| | ||||||
* | Refactor the --omit and --include support during reporting, and add a test ↵ | Ned Batchelder | 2010-08-28 | 3 | -35/+47 | |
| | | | | for --include. | |||||
* | Don't complain about multiple statements on a line. | Ned Batchelder | 2010-08-28 | 1 | -1/+2 | |
| | ||||||
* | There aren't many places I like putting a function body on the def line, but ↵ | Ned Batchelder | 2010-08-28 | 1 | -17/+6 | |
| | | | | this looks better. | |||||
* | Correct case. | Ned Batchelder | 2010-08-28 | 1 | -1/+1 | |
| | ||||||
* | Clean up lint. | Ned Batchelder | 2010-08-26 | 4 | -677/+677 | |
| | ||||||
* | The thread-startup dance caused Thread.run() to not be measured. This fixes ↵ | Ned Batchelder | 2010-08-26 | 4 | -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 Batchelder | 2010-08-24 | 8 | -13/+83 | |
| | | | | after the decimal point in coverage percentages. Finishes issue #16. | |||||
* | Add a comment about the wacky object attributes for modules. | Ned Batchelder | 2010-08-23 | 1 | -0/+4 | |
| | ||||||
* | A file to control my search tool. | Ned Batchelder | 2010-08-22 | 1 | -0/+7 | |
| | ||||||
* | Unify formatting of coverage percentages, and don't show zero or 100 as a ↵ | Ned Batchelder | 2010-08-22 | 10 | -15/+49 | |
| | | | | result of rounding. Fixes #41 and #70. | |||||
* | Bump version number, and don't use version-specific URLs for released versions. | Ned Batchelder | 2010-08-22 | 1 | -2/+5 | |
| | ||||||
* | Coverage 3.4b1 | Ned Batchelder | 2010-08-21 | 1 | -0/+1 | |
| | ||||||
* | Include the version number in the beta warning box.coverage-3.4b1 | Ned Batchelder | 2010-08-21 | 2 | -3/+3 | |
| | ||||||
* | Beta docs will require tweaking the .htaccess on nedbatchelder.com | Ned Batchelder | 2010-08-21 | 1 | -0/+1 | |
| | ||||||
* | Change how the beta docs are made, and make them more beta-y | Ned Batchelder | 2010-08-21 | 3 | -9/+15 | |
| | ||||||
* | Trim up some lines | Ned Batchelder | 2010-08-20 | 2 | -3/+4 | |
| | ||||||
* | Don't trace code if the reported filename is *.html. Fixes issue #82. | Ned Batchelder | 2010-08-20 | 2 | -0/+13 | |
| | ||||||
* | Make it possible to have beta docs in a different place than the real docs | Ned Batchelder | 2010-08-20 | 4 | -19/+25 | |
| | ||||||
* | Doc tweaks for 3.4b1 | Ned Batchelder | 2010-08-20 | 3 | -6/+9 | |
| | ||||||
* | Get ready to have version-specific doc URLs. | Ned Batchelder | 2010-08-20 | 7 | -3/+12 | |
| | ||||||
* | Bump the version number to 3.4b1 | Ned Batchelder | 2010-08-20 | 4 | -6/+8 | |
| | ||||||
* | Working on getting coverage to measure itself again. | Ned Batchelder | 2010-08-07 | 2 | -2/+9 | |
| | ||||||
* | Use some strange self.os stuff to hold references to modules so we'll have ↵ | Ned Batchelder | 2010-08-07 | 2 | -7/+17 | |
| | | | | them available when called from atexit(). Fixes issue #71, I think. | |||||
* | Clean up whitespace. | Ned Batchelder | 2010-08-01 | 1 | -1/+1 | |
| | ||||||
* | Python 3.2 now puts .pyc in __pycache__ directories. | Ned Batchelder | 2010-08-01 | 1 | -0/+1 | |
| | ||||||
* | Updates for 3.2 | Ned Batchelder | 2010-08-01 | 4 | -14/+10 | |
| | ||||||
* | Python 3.2 doesn't make .pyc files in the local dir any more, so be more ↵ | Ned Batchelder | 2010-08-01 | 1 | -13/+29 | |
| | | | | flexible. | |||||
* | Python 3.2 doctest expects stdout to have an encoding. | Ned Batchelder | 2010-08-01 | 1 | -2/+4 | |
| | ||||||
* | Virtualenv3 moves random.py into the virtualenv, so we can't use it as the ↵ | Ned Batchelder | 2010-08-01 | 1 | -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 Batchelder | 2010-07-26 | 2 | -7/+35 | |
| | ||||||
* | Start of a standalone installation page. | Ned Batchelder | 2010-07-25 | 3 | -33/+78 | |
| |