summaryrefslogtreecommitdiff
path: root/test/test_api.py
Commit message (Collapse)AuthorAgeFilesLines
* Now completely unexecuted source files can be included in reporting. ↵Ned Batchelder2010-09-031-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 Batchelder2010-08-301-0/+1
|
* Python 3.2 doesn't make .pyc files in the local dir any more, so be more ↵Ned Batchelder2010-08-011-13/+29
| | | | flexible.
* Re-vamp the tests for omit and include, and add source.Ned Batchelder2010-06-211-60/+55
|
* Give this helper function a better name, it's confused me too many times.Ned Batchelder2010-06-211-15/+15
|
* All tests now use underscore names instead of some having camelCase names.Ned Batchelder2010-06-181-17/+18
|
* Isolate old-style singleton api tests.Ned Batchelder2010-06-181-21/+28
|
* Update our own covcov.ini to properly omit files the new way.Ned Batchelder2010-05-241-1/+1
|
* Omit and include are now filename patterns rather than prefixes. BACKWARD ↵Ned Batchelder2010-05-231-4/+4
| | | | INCOMPATIBLE change.
* Format the code to pylint's liking, and fix up the docstrings for omit and ↵Ned Batchelder2010-05-151-1/+3
| | | | include.
* Hook up omit and include to the run command. Test the new cmdline behavior ↵Ned Batchelder2010-05-151-0/+69
| | | | and run behavior.
* Reports now emphasize missed lines over executed lines, since those are more ↵Ned Batchelder2010-03-131-5/+5
| | | | helpful for directing developers to improved test coverage.
* Parallel mode can be set from the .coveragerc file.Ned Batchelder2010-01-031-1/+1
|
* Mark some lines as uncoverable, add some tests for some test methods.Ned Batchelder2009-12-261-22/+22
|
* I never liked the assert_ method anyway. Use assertTrue and assertFalse ↵Ned Batchelder2009-12-131-1/+1
| | | | instead.
* Merged default onto config.Ned Batchelder2009-12-031-16/+19
|\ | | | | | | | | --HG-- branch : config
| * Massive eol whitespace clean-up.Ned Batchelder2009-12-021-16/+16
| |
| * Fix some self-measurement problems. Now coverage_coverage.py works again ↵Ned Batchelder2009-11-291-0/+3
| | | | | | | | (had to be sure to stop coverage if check_coverage threw an exception).
* | Add data_file to the .coveragerc file.Ned Batchelder2009-11-281-0/+20
| | | | | | | | | | --HG-- branch : config
* | Read a config file to get some of our configuration.Ned Batchelder2009-11-281-1/+1
|/ | | | | --HG-- branch : config
* Rename our future-happy unittest methods to match their future versions, and ↵Ned Batchelder2009-11-261-6/+6
| | | | let the future versions win if they exist.
* CamelCase looks weird, switch to underscore_separated.Ned Batchelder2009-10-161-21/+21
|
* The best way to get py3k support: same source runs on both, with some ↵Ned Batchelder2009-09-221-1/+3
| | | | contortions.
* cover_stdlib wasn't quite right, it controls covering the entire Python ↵Ned Batchelder2009-05-121-2/+2
| | | | library, so cover_pylib it is.
* Reporting on nothing is OK.Ned Batchelder2009-05-111-0/+6
|
* Oops: two tests with the same name means one of them doesn't get run! ↵Ned Batchelder2009-05-111-2/+2
| | | | Thanks, pylint.
* Re-think the api to set the data file name and suffix.Ned Batchelder2009-05-111-0/+45
|
* More docstringsNed Batchelder2009-05-091-0/+2
|
* makeFile is more useful if it doesn't append .pyNed Batchelder2009-05-081-8/+8
|
* Change how data is harvested from the collector to simplify api use.Ned Batchelder2009-05-051-2/+9
|
* Added clear_exclude() and get_exclude_list()Ned Batchelder2009-05-041-0/+12
|
* Pass values into coverage's contructor rather than set properties.Ned Batchelder2009-05-041-2/+1
|
* Split api tests into their own file.Ned Batchelder2009-05-041-0/+177