summaryrefslogtreecommitdiff
path: root/coverage/codeunit.py
Commit message (Collapse)AuthorAgeFilesLines
* Adapt to the full_line_map change in MakoNed Batchelder2014-05-271-2/+6
|
* Clean up codeunit, as usualNed Batchelder2014-05-201-5/+5
|
* Improved Mako support. Needs Mako tipNed Batchelder2014-05-201-52/+23
|
* Continued refactoring of CodeUnitNed Batchelder2014-05-181-15/+18
|
* Move shell globbing into cmdline.pyNed Batchelder2014-05-181-10/+1
|
* Refactoring, asymptotically approaching multi-languageNed Batchelder2014-05-041-2/+2
|
* More refactoring of hacked Mako supportNed Batchelder2014-04-181-35/+52
|
* Fix the Mako regexesNed Batchelder2014-03-081-2/+2
|
* Hacked-in Mako support.Ned Batchelder2014-03-081-2/+115
|
* Start on splitting into different parsers for different languagesNed Batchelder2014-03-061-6/+31
|
* Comment spelling and todo bookkeeping.Ned Batchelder2014-03-061-1/+1
|
* Now I can use tuples with startswith and endswith.Ned Batchelder2013-10-191-1/+1
|
* One more pylint improvement: no more multi-statement lines.Ned Batchelder2012-12-301-6/+12
|
* Messages with filenames are not good as %r, because it doubles the ↵Ned Batchelder2012-11-231-1/+1
| | | | backslashes...
* Change one bit.Ned Batchelder2012-11-231-1/+1
|
* Merged Geoff's changeNed Batchelder2012-11-231-0/+2
|\
| * Handle compiled files under JythonGeoff Bache2010-12-101-0/+2
| |
* | Where we deal with .pyc files, also deal with .pyo files. Fixes #195.Ned Batchelder2012-09-061-1/+1
| |
* | Don't complain about files that can't be parsed as Python if they didn't ↵Ned Batchelder2012-04-181-0/+20
| | | | | | | | seem like Python at all. #82.
* | Isolate the open/tokenize.open distinction into backward.pyNed Batchelder2011-01-301-6/+3
| |
* | Properly close files.Brett Cannon2011-01-281-2/+5
|/
* Refactor the --omit and --include support during reporting, and add a test ↵Ned Batchelder2010-08-281-31/+3
| | | | 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.
* Merge latest code from main coverage.py repoNed Batchelder2010-05-291-1/+0
|\
| * fixed a bug caused in 8e1995c8156a - refactoring out omit_filter never ↵David Stanek2010-05-221-2/+2
| | | | | | | | really worked
| * merged in latest changes from Ned's repoDavid Stanek2010-05-211-10/+17
| |\
| | * Moving file filter logic out so it can be monkey patched easilyrozza@x103086.gcapmedia.com2009-11-201-10/+17
| | |
* | | Omit and include are now filename patterns rather than prefixes. BACKWARD ↵Ned Batchelder2010-05-231-17/+15
|/ / | | | | | | INCOMPATIBLE change.
* | Format the code to pylint's liking, and fix up the docstrings for omit and ↵Ned Batchelder2010-05-151-6/+8
| | | | | | | | include.
* | Hook up omit and include to the run command. Test the new cmdline behavior ↵Ned Batchelder2010-05-151-3/+2
| | | | | | | | and run behavior.
* | Change 'requires' to 'include'.Ned Batchelder2010-05-151-6/+6
| |
* | add a --require option to specify directories which are required to be at ↵Zooko Ofsimplegeo2010-04-191-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.
* | Source files can have more than one dot in them. Fixes issue #46.Ned Batchelder2010-03-141-2/+2
| |
* | Massive eol whitespace clean-up.Ned Batchelder2009-12-021-17/+17
| |
* | Don't measure mock.py when we measure our coverage.Ned Batchelder2009-11-291-0/+1
|/
* The --omit option was checking name instead of filename. This is much ↵Ned Batchelder2009-11-191-1/+1
| | | | better! Fixes #33. Thanks, Danek Duvall
* Everything should derive from object.Ned Batchelder2009-10-241-1/+1
|
* Last clean up on the egg-reading code. Fixes issue #25.Ned Batchelder2009-09-301-9/+12
|
* Make egg source reading work on py2k and py3k, though i don't like it much...Ned Batchelder2009-09-301-2/+2
|
* Working toward reading source from eggs, but this isn't right on Py3k yet.Ned Batchelder2009-09-291-3/+15
|
* The best way to get py3k support: same source runs on both, with some ↵Ned Batchelder2009-09-221-1/+4
| | | | contortions.
* Various Py3k fixes: remove gratuitous print, don't test the print statement, ↵Ned Batchelder2009-07-081-2/+20
| | | | deal with __cmp__ ugliness, etc.
* Get the flat_rootname right for nested CodeUnits. Thanks, Christian Heimes.Ned Batchelder2009-06-121-3/+8
|
* Minor cleanup: don't use the types module so much.Ned Batchelder2009-06-101-2/+2
|
* The name of the project is Coverage, not coverage.py.Ned Batchelder2009-04-301-1/+1
|
* HTML reporting, phase 0.Ned Batchelder2009-04-201-0/+4
|
* The CodeUnit relative decision was wrong in the case that the module was ↵Ned Batchelder2009-04-191-1/+7
| | | | specified relatively to begin with.
* Annotated files are only created for source files relative to the current ↵Ned Batchelder2009-04-191-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.
* If a module was loaded from a .pyc, report its file as .pyNed Batchelder2009-04-151-0/+3
|
* FileLocator is a better name than FileWrangler.Ned Batchelder2009-03-111-7/+7
|