| Commit message (Expand) | Author | Age | Files | Lines |
* | Format the code to pylint's liking, and fix up the docstrings for omit and in... | Ned Batchelder | 2010-05-15 | 1 | -1/+1 |
* | Hook up omit and include to the run command. Test the new cmdline behavior a... | Ned Batchelder | 2010-05-15 | 1 | -0/+8 |
* | Properly record multiple exits separately. Fixes #62. | Ned Batchelder | 2010-04-27 | 1 | -7/+29 |
* | make_files is more useful if it can do subdirectories too. | Ned Batchelder | 2010-03-20 | 1 | -1/+7 |
* | Who would have thought getting missing environment vars right would require s... | Ned Batchelder | 2010-03-13 | 1 | -2/+5 |
* | Nicer handling of missing environment variables. | Ned Batchelder | 2010-03-13 | 1 | -5/+3 |
* | When fiddling with PYTHONPATH, be prepared for it not to exist. | Ned Batchelder | 2010-03-13 | 1 | -1/+3 |
* | If the user's code calls sys.exit(), honor the request and exit with that sta... | Ned Batchelder | 2010-02-28 | 1 | -4/+31 |
* | Simplify the check_coverage function just a smidgin | Ned Batchelder | 2009-12-26 | 1 | -10/+9 |
* | Mark some lines as uncoverable, add some tests for some test methods. | Ned Batchelder | 2009-12-26 | 1 | -3/+3 |
* | Clarify the behavior of check_coverage. | Ned Batchelder | 2009-12-21 | 1 | -3/+8 |
* | lint lint | Ned Batchelder | 2009-12-20 | 1 | -1/+3 |
* | A better way to display differences between arc lists when tests fail. | Ned Batchelder | 2009-12-20 | 1 | -3/+10 |
* | Add tests for 'coverage debug data' | Ned Batchelder | 2009-12-19 | 1 | -3/+4 |
* | Clean-ups | Ned Batchelder | 2009-12-05 | 1 | -5/+5 |
* | Merged default onto config. | Ned Batchelder | 2009-12-03 | 1 | -36/+38 |
|\ |
|
| * | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -35/+35 |
| * | Fix some self-measurement problems. Now coverage_coverage.py works again (ha... | Ned Batchelder | 2009-11-29 | 1 | -6/+7 |
* | | A new way to manage changes to the environment in the unit tests. | Ned Batchelder | 2009-11-28 | 1 | -8/+36 |
|/ |
|
* | Rename our future-happy unittest methods to match their future versions, and ... | Ned Batchelder | 2009-11-26 | 1 | -1/+1 |
* | Refactor generic unittest methods into a new class. | Ned Batchelder | 2009-11-26 | 1 | -63/+3 |
* | When reporting, don't fall over if there's no data to report on. Fixes issue ... | Ned Batchelder | 2009-11-26 | 1 | -2/+27 |
* | Add a test for leaking memory in the C extension. Windows only for now, kind... | Ned Batchelder | 2009-11-22 | 1 | -1/+1 |
* | Add a multiline test assert, lifted from Py3.1 | Ned Batchelder | 2009-11-21 | 1 | -1/+18 |
* | Trim line lengths | Ned Batchelder | 2009-11-18 | 1 | -2/+3 |
* | Dur! This is a better way to indicate how the tests should run. | Ned Batchelder | 2009-11-18 | 1 | -4/+2 |
* | Avoid some unneeded tempdir creation in tests. | Ned Batchelder | 2009-11-15 | 1 | -23/+30 |
* | Add an assert_matches method, and tests to prove it works. | Ned Batchelder | 2009-10-25 | 1 | -1/+7 |
* | Start testing exceptions with arc measurements. | Ned Batchelder | 2009-10-19 | 1 | -4/+13 |
* | Keep lines under 80 chars. | Ned Batchelder | 2009-10-17 | 1 | -4/+8 |
* | Tidying up | Ned Batchelder | 2009-10-16 | 1 | -1/+1 |
* | Start unit testing the arc measurement. In arcs, -1 means enter or exit. | Ned Batchelder | 2009-10-16 | 1 | -13/+47 |
* | CamelCase looks weird, switch to underscore_separated. | Ned Batchelder | 2009-10-16 | 1 | -9/+9 |
* | More refactoring of the use of analysis objects. | Ned Batchelder | 2009-10-15 | 1 | -6/+6 |
* | The best way to get py3k support: same source runs on both, with some contort... | Ned Batchelder | 2009-09-22 | 1 | -4/+5 |
* | Py3k: manipulating PYTHONPATH seems different under Py 3.x, so do it differen... | Ned Batchelder | 2009-07-10 | 1 | -3/+7 |
* | Py3k: unify subprocess and popen4. | Ned Batchelder | 2009-07-08 | 1 | -3/+2 |
* | Move the backward-compatibility definitions to a common file. There seems to ... | Ned Batchelder | 2009-07-03 | 1 | -8/+1 |
* | Clean up the `set` definitions for 2.3 (these should go someplace common). | Ned Batchelder | 2009-07-03 | 1 | -1/+2 |
* | PYTHONPATH might not exist (for example on OS/X) | Ned Batchelder | 2009-06-27 | 1 | -1/+1 |
* | More docstrings | Ned Batchelder | 2009-05-09 | 1 | -0/+2 |
* | More docstrings all around. | Ned Batchelder | 2009-05-09 | 1 | -5/+13 |
* | makeFile is more useful if it doesn't append .py | Ned Batchelder | 2009-05-08 | 1 | -6/+8 |
* | The name of the project is Coverage, not coverage.py. | Ned Batchelder | 2009-04-30 | 1 | -3/+3 |
* | Line length < 80. | Ned Batchelder | 2009-04-19 | 1 | -2/+5 |
* | New more flexible data storage. | Ned Batchelder | 2009-04-18 | 1 | -0/+11 |
* | Commonalize more of the test case code. | Ned Batchelder | 2009-04-18 | 1 | -9/+34 |
* | Put coveragetest.py under the pylint regime. | Ned Batchelder | 2009-04-18 | 1 | -8/+20 |
* | Remove the tests' dependence on the 3rd party path module. | Ned Batchelder | 2009-04-18 | 1 | -7/+5 |
* | Use a coverage object rather than the module interface for testing, to get be... | Ned Batchelder | 2009-04-18 | 1 | -6/+7 |