Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't complain about files that can't be parsed as Python if they didn't ↵ | Ned Batchelder | 2012-04-18 | 1 | -0/+20 |
| | | | | seem like Python at all. #82. | ||||
* | Isolate the open/tokenize.open distinction into backward.py | Ned Batchelder | 2011-01-30 | 1 | -6/+3 |
| | |||||
* | Properly close files. | Brett Cannon | 2011-01-28 | 1 | -2/+5 |
| | |||||
* | Refactor the --omit and --include support during reporting, and add a test ↵ | Ned Batchelder | 2010-08-28 | 1 | -31/+3 |
| | | | | for --include. | ||||
* | 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. | ||||
* | Merge latest code from main coverage.py repo | Ned Batchelder | 2010-05-29 | 1 | -31/+21 |
|\ | |||||
| * | Omit and include are now filename patterns rather than prefixes. BACKWARD ↵ | Ned Batchelder | 2010-05-23 | 1 | -17/+15 |
| | | | | | | | | INCOMPATIBLE change. | ||||
* | | fixed a bug caused in 8e1995c8156a - refactoring out omit_filter never ↵ | David Stanek | 2010-05-22 | 1 | -2/+2 |
| | | | | | | | | really worked | ||||
* | | merged in latest changes from Ned's repo | David Stanek | 2010-05-21 | 1 | -10/+17 |
|\ \ | |/ |/| | |||||
| * | Moving file filter logic out so it can be monkey patched easily | rozza@x103086.gcapmedia.com | 2009-11-20 | 1 | -10/+17 |
| | | |||||
* | | Format the code to pylint's liking, and fix up the docstrings for omit and ↵ | Ned Batchelder | 2010-05-15 | 1 | -6/+8 |
| | | | | | | | | include. | ||||
* | | Hook up omit and include to the run command. Test the new cmdline behavior ↵ | Ned Batchelder | 2010-05-15 | 1 | -3/+2 |
| | | | | | | | | and run behavior. | ||||
* | | Change 'requires' to 'include'. | Ned Batchelder | 2010-05-15 | 1 | -6/+6 |
| | | |||||
* | | add a --require option to specify directories which are required to be at ↵ | Zooko Ofsimplegeo | 2010-04-19 | 1 | -2/+16 |
| | | | | | | | | | | | | | | | | | | the beginning of the path for any file that is going to be included in code coverage make the --omit and --require options apply to code coverage generation as well as to reporting; This speeds up tests from 6 seconds to 1 second on my system, as well as making the resulting .coverage db include *only* the code that I care about, which helps with my code coverage progression/regression tool. --HG-- extra : transplant_source : %1F.4%81%E8%DA%0B%D0%D5%9D%89%DE%E1vY%E6%CD%1A%EB%C9 | ||||
* | | Source files can have more than one dot in them. Fixes issue #46. | Ned Batchelder | 2010-03-14 | 1 | -2/+2 |
| | | |||||
* | | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -17/+17 |
| | | |||||
* | | Don't measure mock.py when we measure our coverage. | Ned Batchelder | 2009-11-29 | 1 | -0/+1 |
|/ | |||||
* | The --omit option was checking name instead of filename. This is much ↵ | Ned Batchelder | 2009-11-19 | 1 | -1/+1 |
| | | | | better! Fixes #33. Thanks, Danek Duvall | ||||
* | Everything should derive from object. | Ned Batchelder | 2009-10-24 | 1 | -1/+1 |
| | |||||
* | Last clean up on the egg-reading code. Fixes issue #25. | Ned Batchelder | 2009-09-30 | 1 | -9/+12 |
| | |||||
* | Make egg source reading work on py2k and py3k, though i don't like it much... | Ned Batchelder | 2009-09-30 | 1 | -2/+2 |
| | |||||
* | Working toward reading source from eggs, but this isn't right on Py3k yet. | Ned Batchelder | 2009-09-29 | 1 | -3/+15 |
| | |||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 1 | -1/+4 |
| | | | | contortions. | ||||
* | Various Py3k fixes: remove gratuitous print, don't test the print statement, ↵ | Ned Batchelder | 2009-07-08 | 1 | -2/+20 |
| | | | | deal with __cmp__ ugliness, etc. | ||||
* | Get the flat_rootname right for nested CodeUnits. Thanks, Christian Heimes. | Ned Batchelder | 2009-06-12 | 1 | -3/+8 |
| | |||||
* | Minor cleanup: don't use the types module so much. | Ned Batchelder | 2009-06-10 | 1 | -2/+2 |
| | |||||
* | The name of the project is Coverage, not coverage.py. | Ned Batchelder | 2009-04-30 | 1 | -1/+1 |
| | |||||
* | HTML reporting, phase 0. | Ned Batchelder | 2009-04-20 | 1 | -0/+4 |
| | |||||
* | The CodeUnit relative decision was wrong in the case that the module was ↵ | Ned Batchelder | 2009-04-19 | 1 | -1/+7 |
| | | | | specified relatively to begin with. | ||||
* | Annotated files are only created for source files relative to the current ↵ | Ned Batchelder | 2009-04-19 | 1 | -1/+20 |
| | | | | | | | | directory. When writing to a separate file, annotation file names include the directory hierarchy flattened, so that same-named files won't collide. --HG-- rename : test/farm/annotate/gold_anno_dir/a.py,cover => test/farm/annotate/gold_anno_dir/a_a.py,cover rename : test/farm/annotate/gold_anno_dir/b.py,cover => test/farm/annotate/gold_anno_dir/b_b.py,cover | ||||
* | If a module was loaded from a .pyc, report its file as .py | Ned Batchelder | 2009-04-15 | 1 | -0/+3 |
| | |||||
* | FileLocator is a better name than FileWrangler. | Ned Batchelder | 2009-03-11 | 1 | -7/+7 |
| | |||||
* | Split out the filename operations; Morf -> CodeUnit. | Ned Batchelder | 2009-03-11 | 1 | -0/+70 |
--HG-- rename : coverage/morf.py => coverage/codeunit.py |