Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Branch coverage is computed more accurately, #156. | Ned Batchelder | 2012-11-19 | 1 | -1/+2 |
| | |||||
* | No longer see a mysterious exception when not able to run code: ↵ | Ned Batchelder | 2012-11-11 | 1 | -0/+1 |
| | | | | AttributeError: 'NoneType' object has no attribute 'isabs'. #153 | ||||
* | More converstion to assertIn and assertNotIn. | Ned Batchelder | 2012-11-11 | 1 | -1/+1 |
| | |||||
* | Add in assertNotIn. | Ned Batchelder | 2012-11-10 | 1 | -6/+2 |
| | |||||
* | One more way to be picky: no final blank lines. | Ned Batchelder | 2012-10-30 | 1 | -1/+1 |
| | |||||
* | py3 is strict about modifying lists you're iterating. | Ned Batchelder | 2012-10-29 | 1 | -1/+1 |
| | |||||
* | Fix #163: embarassingly, the wildcards for include and omit didn't work ↵ | Ned Batchelder | 2012-10-29 | 1 | -94/+92 |
| | | | | properly for reporting functions. This is now fixed. | ||||
* | Merged | Ned Batchelder | 2012-10-27 | 1 | -4/+8 |
|\ | |||||
| * | Make a mixin for a test: super is hard, let's go shopping. | Ned Batchelder | 2012-10-27 | 1 | -4/+8 |
| | | |||||
* | | A more convenient asserter | Ned Batchelder | 2012-10-21 | 1 | -17/+13 |
| | | |||||
* | | Minor style tweaks | Ned Batchelder | 2012-10-21 | 1 | -2/+2 |
|/ | |||||
* | You can include files in the Python installation, and they will be measured. | Ned Batchelder | 2011-08-03 | 1 | -5/+22 |
| | |||||
* | The number of missed branches reported on the HTML summary page didn't match ↵ | Ned Batchelder | 2011-08-02 | 1 | -0/+33 |
| | | | | the number on the file page. | ||||
* | Move some test modules to keep them out of pylint's hair. | Ned Batchelder | 2011-06-01 | 1 | -1/+1 |
| | | | | | | | | | | --HG-- rename : test/othermods/__init__.py => test/moremodules/othermods/__init__.py rename : test/othermods/othera.py => test/moremodules/othermods/othera.py rename : test/othermods/otherb.py => test/moremodules/othermods/otherb.py rename : test/othermods/sub/__init__.py => test/moremodules/othermods/sub/__init__.py rename : test/othermods/sub/osa.py => test/moremodules/othermods/sub/osa.py rename : test/othermods/sub/osb.py => test/moremodules/othermods/sub/osb.py | ||||
* | Better handling of the partial-branch exclusion regexes. Finishes issue #113. | Ned Batchelder | 2011-05-31 | 1 | -1/+34 |
| | |||||
* | Since people make this mistake, and it's mysterious: accept a single string ↵ | Ned Batchelder | 2011-04-25 | 1 | -0/+18 |
| | | | | for omit and include. | ||||
* | Remove trailing spaces | Ned Batchelder | 2011-03-24 | 1 | -2/+2 |
| | |||||
* | --omit and --include now interpret their values more usefully. Fixes #121. | Ned Batchelder | 2011-03-21 | 1 | -27/+76 |
| | |||||
* | Pylint 0.23.0 'deprecated' disable-msg. | Ned Batchelder | 2011-02-01 | 1 | -1/+1 |
| | |||||
* | Now completely unexecuted source files can be included in reporting. ↵ | Ned Batchelder | 2010-09-03 | 1 | -0/+5 |
| | | | | Specifying --source tells coverage.py where to search for files that haven't been executed. | ||||
* | Some prep work for finding completely uncovered files. | Ned Batchelder | 2010-08-30 | 1 | -0/+1 |
| | |||||
* | 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. | ||||
* | Re-vamp the tests for omit and include, and add source. | Ned Batchelder | 2010-06-21 | 1 | -60/+55 |
| | |||||
* | Give this helper function a better name, it's confused me too many times. | Ned Batchelder | 2010-06-21 | 1 | -15/+15 |
| | |||||
* | All tests now use underscore names instead of some having camelCase names. | Ned Batchelder | 2010-06-18 | 1 | -17/+18 |
| | |||||
* | Isolate old-style singleton api tests. | Ned Batchelder | 2010-06-18 | 1 | -21/+28 |
| | |||||
* | Update our own covcov.ini to properly omit files the new way. | Ned Batchelder | 2010-05-24 | 1 | -1/+1 |
| | |||||
* | Omit and include are now filename patterns rather than prefixes. BACKWARD ↵ | Ned Batchelder | 2010-05-23 | 1 | -4/+4 |
| | | | | INCOMPATIBLE change. | ||||
* | Format the code to pylint's liking, and fix up the docstrings for omit and ↵ | Ned Batchelder | 2010-05-15 | 1 | -1/+3 |
| | | | | include. | ||||
* | Hook up omit and include to the run command. Test the new cmdline behavior ↵ | Ned Batchelder | 2010-05-15 | 1 | -0/+69 |
| | | | | and run behavior. | ||||
* | Reports now emphasize missed lines over executed lines, since those are more ↵ | Ned Batchelder | 2010-03-13 | 1 | -5/+5 |
| | | | | helpful for directing developers to improved test coverage. | ||||
* | Parallel mode can be set from the .coveragerc file. | Ned Batchelder | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | Mark some lines as uncoverable, add some tests for some test methods. | Ned Batchelder | 2009-12-26 | 1 | -22/+22 |
| | |||||
* | I never liked the assert_ method anyway. Use assertTrue and assertFalse ↵ | Ned Batchelder | 2009-12-13 | 1 | -1/+1 |
| | | | | instead. | ||||
* | Merged default onto config. | Ned Batchelder | 2009-12-03 | 1 | -16/+19 |
|\ | | | | | | | | | --HG-- branch : config | ||||
| * | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -16/+16 |
| | | |||||
| * | Fix some self-measurement problems. Now coverage_coverage.py works again ↵ | Ned Batchelder | 2009-11-29 | 1 | -0/+3 |
| | | | | | | | | (had to be sure to stop coverage if check_coverage threw an exception). | ||||
* | | Add data_file to the .coveragerc file. | Ned Batchelder | 2009-11-28 | 1 | -0/+20 |
| | | | | | | | | | | --HG-- branch : config | ||||
* | | Read a config file to get some of our configuration. | Ned Batchelder | 2009-11-28 | 1 | -1/+1 |
|/ | | | | | --HG-- branch : config | ||||
* | Rename our future-happy unittest methods to match their future versions, and ↵ | Ned Batchelder | 2009-11-26 | 1 | -6/+6 |
| | | | | let the future versions win if they exist. | ||||
* | CamelCase looks weird, switch to underscore_separated. | Ned Batchelder | 2009-10-16 | 1 | -21/+21 |
| | |||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 1 | -1/+3 |
| | | | | contortions. | ||||
* | cover_stdlib wasn't quite right, it controls covering the entire Python ↵ | Ned Batchelder | 2009-05-12 | 1 | -2/+2 |
| | | | | library, so cover_pylib it is. | ||||
* | Reporting on nothing is OK. | Ned Batchelder | 2009-05-11 | 1 | -0/+6 |
| | |||||
* | Oops: two tests with the same name means one of them doesn't get run! ↵ | Ned Batchelder | 2009-05-11 | 1 | -2/+2 |
| | | | | Thanks, pylint. | ||||
* | Re-think the api to set the data file name and suffix. | Ned Batchelder | 2009-05-11 | 1 | -0/+45 |
| | |||||
* | More docstrings | Ned Batchelder | 2009-05-09 | 1 | -0/+2 |
| | |||||
* | makeFile is more useful if it doesn't append .py | Ned Batchelder | 2009-05-08 | 1 | -8/+8 |
| | |||||
* | Change how data is harvested from the collector to simplify api use. | Ned Batchelder | 2009-05-05 | 1 | -2/+9 |
| | |||||
* | Added clear_exclude() and get_exclude_list() | Ned Batchelder | 2009-05-04 | 1 | -0/+12 |
| |