summaryrefslogtreecommitdiff
path: root/test
Commit message (Expand)AuthorAgeFilesLines
...
* Add some excluded lines to the annotation tests, and write some docstrings fo...Ned Batchelder2009-05-133-0/+6
* Give the singleton module interface a way to keep the old behavior of auto-lo...Ned Batchelder2009-05-121-2/+1
* cover_stdlib wasn't quite right, it controls covering the entire Python libra...Ned Batchelder2009-05-121-2/+2
* 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! Thanks,...Ned Batchelder2009-05-111-2/+2
* Re-think the api to set the data file name and suffix.Ned Batchelder2009-05-112-4/+47
* More docstringsNed Batchelder2009-05-096-1/+20
* More docstrings all around.Ned Batchelder2009-05-092-6/+14
* Also make __builtins__ available in main programs.Ned Batchelder2009-05-092-1/+6
* Change run_python_file again so that it doesn't produce compiled turds in the...Ned Batchelder2009-05-091-16/+10
* makeFile is more useful if it doesn't append .pyNed Batchelder2009-05-084-18/+34
* Treat files not ending in .py properly.Ned Batchelder2009-05-071-1/+5
* OS truceNed Batchelder2009-05-071-8/+8
* Add a failing test for running non-.py files on the command line.Ned Batchelder2009-05-073-2/+34
* Change how data is harvested from the collector to simplify api use.Ned Batchelder2009-05-052-3/+9
* Lint lintNed Batchelder2009-05-051-1/+1
* Lint clean-ups.Ned Batchelder2009-05-051-8/+13
* Use the new clear_exclude() function to improve coverage_coverage.pyNed Batchelder2009-05-041-2/+8
* 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-042-171/+177
* Keeping a stack of Collectors makes it possible for Coverage to measure itsel...Ned Batchelder2009-05-031-0/+34
* Clarify what Collector.start and .stop do to other threads.Ned Batchelder2009-05-021-3/+4
* The old way of self-coverage testing coverage no longer works.Ned Batchelder2009-04-301-27/+0
* The name of the project is Coverage, not coverage.py.Ned Batchelder2009-04-303-5/+5
* Python stdlib is now not measured by default. If needed, turn it on with the...coverage-3.0b2Ned Batchelder2009-04-291-0/+38
* Reduce line lengths.Ned Batchelder2009-04-281-13/+37
* Finish up the cmdline details for -bNed Batchelder2009-04-281-0/+2
* Split out the cmdline.py tests.Ned Batchelder2009-04-282-30/+41
* A farm test for HTML generation.Ned Batchelder2009-04-287-15/+407
* HTML reporting, phase 0.Ned Batchelder2009-04-201-1/+1
* Variables' items (dict access) can be used in templates.Ned Batchelder2009-04-201-0/+5
* Use try_render mostly, to reduce noise in the tests.Ned Batchelder2009-04-201-33/+23
* Muliple loops and multi-line loops didn't work.Ned Batchelder2009-04-201-0/+22
* reversed() is new in 2.4, so use a cobbled-together function so we can test u...Ned Batchelder2009-04-191-1/+6
* Templite: a lightweight template class to use when making HTML reports.Ned Batchelder2009-04-191-0/+95
* Line length < 80.Ned Batchelder2009-04-192-3/+7
* Annotated files are only created for source files relative to the current dir...Ned Batchelder2009-04-194-0/+0
* Make the farm tests more isolated by forcing them to erase coverage data first.Ned Batchelder2009-04-183-9/+7
* More annotate tests, but something is amiss.Ned Batchelder2009-04-185-4/+32
* New more flexible data storage.Ned Batchelder2009-04-182-9/+33
* More pylint shenanigans.Ned Batchelder2009-04-181-1/+3
* Testing and clean up for data.pyNed Batchelder2009-04-181-2/+66
* A truce with pylint over the test files.Ned Batchelder2009-04-181-0/+0
* Commonalize more of the test case code.Ned Batchelder2009-04-183-42/+43
* Put coveragetest.py under the pylint regime.Ned Batchelder2009-04-181-8/+20
* Use our CoverageTest base class to get isolation (in a new directory) for the...Ned Batchelder2009-04-181-2/+2
* Remove the tests' dependence on the 3rd party path module.Ned Batchelder2009-04-181-7/+5
* Use a coverage object rather than the module interface for testing, to get be...Ned Batchelder2009-04-181-6/+7
* Split CoverageTest into its own module so that it can be used by more tests.Ned Batchelder2009-04-172-161/+165