summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Clean up the `set` definitions for 2.3 (these should go someplace common).Ned Batchelder2009-07-031-1/+2
|
* I forget why this test was neutered.Ned Batchelder2009-06-281-1/+1
|
* Epic bug: pyexpat fiddles incorrectly with the systrace function. This is a ↵Ned Batchelder2009-06-281-1/+46
| | | | hack to make it behave correctly with coverage.py. Fixes bug #10.
* When executing files, open them in Universal Newline mode, just as Python ↵Ned Batchelder2009-06-271-0/+11
| | | | itself does. Makes it possible to run Python from Windows on Mac, for example.
* PYTHONPATH might not exist (for example on OS/X)Ned Batchelder2009-06-271-1/+1
|
* Don't measure the coverage package itself. Inspired by, but does not fix, ↵Ned Batchelder2009-06-242-7/+17
| | | | issue #8.
* Comparing files needs to be agnostic to line endings, or testing on Linux ↵Ned Batchelder2009-06-2310-99/+108
| | | | won't work. Now gold files are newline-only, and the comparison function ignores line endings.
* Remove the fixed limit on recursion depth. Fixes issue #9.Ned Batchelder2009-06-231-0/+31
|
* Point to new docs; more doc tweaks.Ned Batchelder2009-06-131-1/+1
|
* Get the flat_rootname right for nested CodeUnits. Thanks, Christian Heimes.Ned Batchelder2009-06-127-0/+65
|
* Slight tweak so I could debug a test problem.Ned Batchelder2009-06-121-4/+6
|
* Expand tabs to spaces before creating HTML output. Fixes bug #6.Ned Batchelder2009-06-102-0/+26
|
* Silence pylint nagging.Ned Batchelder2009-05-131-6/+15
|
* 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
|