summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* | Remove trailing spacesNed Batchelder2011-03-241-1/+1
| |
* | Incremental HTML generation. Some cleanup would be good.Ned Batchelder2011-03-246-8/+158
| |
* | --omit and --include now interpret their values more usefully. Fixes #121.Ned Batchelder2011-03-211-6/+20
| |
* | Clean-upsNed Batchelder2011-03-162-3/+7
| |
* | A file opened in 'b' mode needs bytes, not strings. Try to do this in a ↵Ned Batchelder2011-03-152-3/+18
| | | | | | | | clean-ish way...
* | A different (better) way to avoid warnings when no code has been run.Ned Batchelder2011-02-122-20/+10
| |
* | Don't warn about not collecting data if we never ran any code in the first ↵Ned Batchelder2011-02-072-11/+27
| | | | | | | | place.
* | Make this message simpler and clearer.Ned Batchelder2011-02-071-1/+1
| |
* | Add tests and doc for Brandon's -m flag.Ned Batchelder2011-02-062-29/+43
| |
* | Automated merge with file:///home/ned/coverage/trunkNed Batchelder2011-02-062-7/+53
|\ \
| * | Added an actual "-m" command line option to turn on the module loader.Brandon Craig Rhodes2011-02-021-6/+13
| | |
| * | Wrote the basic logic for running a Python module or package as __main__.Brandon Craig Rhodes2011-02-022-3/+42
| | |
* | | Automated merge with ssh://bitbucket.org/ned/coveragepyNed Batchelder2011-02-041-15/+17
|\ \ \ | |/ / |/| |
| * | Lint cleanups in the Javascript code.Ned Batchelder2011-02-041-15/+17
| |/
* | Some pylint cleanups.Ned Batchelder2011-02-012-2/+2
| |
* | Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-0110-12/+12
| |
* | A couple more places to use open_source instead of open(fname, 'rU')Ned Batchelder2011-01-302-3/+3
| |
* | A bunch more places where a file close should be in a finally clause.Ned Batchelder2011-01-302-8/+16
| |
* | Isolate the open/tokenize.open distinction into backward.pyNed Batchelder2011-01-303-10/+15
| |
* | Properly close files.Brett Cannon2011-01-282-5/+15
| |
* | Open source files with the proper encoding.Brett Cannon2011-01-282-3/+10
|/
* WhitespaceNed Batchelder2010-11-071-2/+2
|
* Forgot this file in the last checkin.Ned Batchelder2010-11-071-0/+99
|
* Hotkeys for the HTML report.Ned Batchelder2010-11-074-11/+32
|
* Upgrade jquery to 1.4.3Ned Batchelder2010-11-075-25/+177
|
* Detect when our trace function is yanked out from under us, and warn the ↵Ned Batchelder2010-11-063-3/+23
| | | | user. Finishes, but does not fix, issue #93.
* Put the Javascript into an object.Ned Batchelder2010-11-053-9/+12
|
* Use 2-and-3-friendly syntax in the debugging prints in the trace function.Ned Batchelder2010-10-131-5/+8
|
* Jython reports $py.class files in the trace function, so adapt to find the ↵Ned Batchelder2010-10-131-0/+5
| | | | source file.
* 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.