summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Expand)AuthorAgeFilesLines
* fixed the --cover-packages optionDavid Stanek2010-05-211-11/+11
* fixed an error where not specifying the cover package would cause a tracebackDavid Stanek2010-05-211-4/+6
* modified to use report as the default action - the way the old nose plugin wo...David Stanek2010-05-211-1/+1
* merged in latest changes from Ned's repoDavid Stanek2010-05-213-10/+303
|\
| * moved the nose plugin to a better nameDavid Stanek2010-02-201-0/+0
| * fixed busted nose integrationDavid Stanek2010-02-202-6/+6
| * integrate a patch by prologic (James Mills) to add some options.holger krekel2010-02-101-4/+32
| * merging/unifying test plugin codeholger krekel2009-11-253-116/+56
| * * move pytest_coverage/nose_plugin to become directly importableholger krekel2009-11-253-68/+68
| * Merging in changes from http://bitbucket.org/ned/coveragepy/rozza@x103086.gcapmedia.com2009-11-205-92/+128
| |\
| * | Typorozza@x103086.gcapmedia.com2009-11-201-1/+1
| * | Adding a CoverageTestWrapper to be used by test runners / plugins.rozza@x103086.gcapmedia.com2009-11-203-0/+318
| * | Moving file filter logic out so it can be monkey patched easilyrozza@x103086.gcapmedia.com2009-11-201-10/+17
* | | Format the code to pylint's liking, and fix up the docstrings for omit and in...Ned Batchelder2010-05-159-92/+87
* | | Hook up omit and include to the run command. Test the new cmdline behavior a...Ned Batchelder2010-05-153-11/+16
* | | Refactor common code in config.py, and start testing the new options.Ned Batchelder2010-05-151-36/+22
* | | Change 'requires' to 'include'.Ned Batchelder2010-05-159-94/+94
* | | Undo Zooko's version number change.Ned Batchelder2010-05-151-1/+1
* | | fix a couple of bugs in control.py such that handling of omit_prefixes and/or...wonwinmcbrootles@Wonwin-McBrootles-Computer.local2010-05-092-8/+14
* | | add a --require option to specify directories which are required to be at the...Zooko Ofsimplegeo2010-04-199-28/+168
* | | Don't trace any files with names starting with less-than. They are all fake,...Ned Batchelder2010-05-081-3/+5
* | | Properly record multiple exits separately. Fixes #62.Ned Batchelder2010-04-274-20/+35
* | | Use constants for return values to make it easier to see the various uses of ...Ned Batchelder2010-04-261-17/+21
* | | Undo Ben Finney's patch to use the os.path methods. os.path.commonprefix is ...Ned Batchelder2010-03-211-6/+6
* | | Not sure why I changed these from inherit to normal last week (something to d...Ned Batchelder2010-03-201-2/+2
* | | Calculate the pid suffix for data files at the end of the process so that pro...Ned Batchelder2010-03-202-29/+37
* | | Source files can have more than one dot in them. Fixes issue #46.Ned Batchelder2010-03-141-2/+2
* | | Make this function name better.Ned Batchelder2010-03-142-2/+2
* | | Added a link back to the index page at the bottom of HTML source pages. Close...Ned Batchelder2010-03-143-3/+15
* | | HTML line numbers are clickable, and highlight the line on arrival. Also, no...Ned Batchelder2010-03-143-4/+30
* | | Reports now emphasize missed lines over executed lines, since those are more ...Ned Batchelder2010-03-133-13/+13
* | | Minor cleanupNed Batchelder2010-03-131-3/+3
* | | I like this punctuation betterNed Batchelder2010-03-131-1/+2
* | | Merged Ben Finney's use-os-path-module fixes (again?)Ned Batchelder2010-03-131-2/+4
|\ \ \
| * | | Use ‘os.path.commonprefix’ to find the “relative directory” at the st...Ben Finney2010-02-031-2/+4
* | | | Bump version numberNed Batchelder2010-03-131-1/+1
* | | | Deal properly with dos-ended source files while tokenizing. Fixes issue #53.Ned Batchelder2010-03-131-1/+2
* | | | Don't let parallel=True prevent reporting. Fixes #49.Ned Batchelder2010-03-061-9/+10
* | | | We'll call this 3.3.1Ned Batchelder2010-02-281-1/+1
* | | | If the user's code calls sys.exit(), honor the request and exit with that sta...Ned Batchelder2010-02-282-6/+15
* | | | When emulating the Python interpreter, don't print SystemExits tracebacks.Ned Batchelder2010-02-241-1/+6
* | | | Move the version number to 3.3Ned Batchelder2010-02-241-1/+1
* | | | Docs functionally complete for 3.3Ned Batchelder2010-02-241-2/+3
* | | | Python source files that don't end with a newline can now be executed, fixing...Ned Batchelder2010-02-222-10/+17
* | | | SpacesNed Batchelder2010-02-221-3/+3
* | | | Fiddling with docs for 3.3Ned Batchelder2010-02-221-6/+13
* | | | Lint cleanupsNed Batchelder2010-02-201-1/+3
* | | | If the product code throws an exception, 'coverage run' now produces the same...Ned Batchelder2010-02-193-4/+28
* | | | Clean up the lst += string stuff, whereby string being iterable means each ch...Ned Batchelder2010-02-073-21/+21
* | | | You know that thing they say about how ''.join(slist) is faster than s1 += s?...Ned Batchelder2010-02-071-2/+2