summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Add some excluded lines to the annotation tests, and write some docstrings ↵Ned Batchelder2009-05-133-0/+6
| | | | for annotate.py
* Give the singleton module interface a way to keep the old behavior of ↵Ned Batchelder2009-05-121-2/+1
| | | | auto-loading and -saving data as needed.
* 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-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 ↵Ned Batchelder2009-05-091-16/+10
| | | | the file system.
* 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 ↵Ned Batchelder2009-05-031-0/+34
| | | | itself (mostly).
* 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 ↵coverage-3.0b2Ned Batchelder2009-04-291-0/+38
| | | | the -L switch.
* 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 ↵Ned Batchelder2009-04-191-1/+6
| | | | under 2.3.
* 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 ↵Ned Batchelder2009-04-194-0/+0
| | | | directory. When writing to a separate file, annotation file names include the directory hierarchy flattened, so that same-named files won't collide.
* 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 ↵Ned Batchelder2009-04-181-2/+2
| | | | the data tests.
* 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 ↵Ned Batchelder2009-04-181-6/+7
| | | | better isolation. Tests were failing because the exclusion regex is appended to between tests.
* Split CoverageTest into its own module so that it can be used by more tests.Ned Batchelder2009-04-172-161/+165
|