summaryrefslogtreecommitdiff
path: root/test/test_coverage.py
Commit message (Expand)AuthorAgeFilesLines
* The best way to get py3k support: same source runs on both, with some contort...Ned Batchelder2009-09-221-2/+3
* Disable the long recursion test under 3.x for now: it crashes the interpreter...Ned Batchelder2009-09-171-13/+14
* Narrow the amount of code in a coverage start/stop window in a test so that t...Ned Batchelder2009-07-121-8/+11
* Py3k: some output is bytes instead of string, so convert since it doesn't mat...Ned Batchelder2009-07-091-4/+4
* Py3k: exec is a function now, not a statement. Update the tests accordingly.Ned Batchelder2009-07-081-29/+62
* Py3k: unify subprocess and popen4.Ned Batchelder2009-07-081-4/+4
* Various Py3k fixes: remove gratuitous print, don't test the print statement, ...Ned Batchelder2009-07-081-31/+34
* Add a test that proves 2.3 has problems measuring exceptions. Now to figure ...Ned Batchelder2009-07-031-0/+101
* 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
* Don't measure the coverage package itself. Inspired by, but does not fix, is...Ned Batchelder2009-06-241-7/+13
* 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
* Give the singleton module interface a way to keep the old behavior of auto-lo...Ned Batchelder2009-05-121-2/+1
* makeFile is more useful if it doesn't append .pyNed Batchelder2009-05-081-4/+4
* Split api tests into their own file.Ned Batchelder2009-05-041-171/+0
* Clarify what Collector.start and .stop do to other threads.Ned Batchelder2009-05-021-3/+4
* The name of the project is Coverage, not coverage.py.Ned Batchelder2009-04-301-1/+1
* Python stdlib is now not measured by default. If needed, turn it on with the...coverage-3.0b2Ned Batchelder2009-04-291-0/+38
* Split out the cmdline.py tests.Ned Batchelder2009-04-281-30/+0
* HTML reporting, phase 0.Ned Batchelder2009-04-201-1/+1
* Commonalize more of the test case code.Ned Batchelder2009-04-181-15/+2
* Split CoverageTest into its own module so that it can be used by more tests.Ned Batchelder2009-04-171-161/+2
* A cleanup from the test class rename.Ned Batchelder2009-04-171-2/+2
* Finally realized that unit test classes should be named like any other class:...Ned Batchelder2009-04-171-11/+11
* If a module was loaded from a .pyc, report its file as .pyNed Batchelder2009-04-151-0/+51
* It's ok to ask the data module about files that were never measured. Fixes <<...Ned Batchelder2009-04-141-0/+25
* Remove obsolete test infrastructure that the farm took over.Ned Batchelder2009-03-141-31/+1
* Don't suppress stdout in tests any more, nose can handle that for us. Only th...Ned Batchelder2009-03-141-23/+18
* The first working farm test, obsoleting a test_coverage.py test.Ned Batchelder2009-03-141-5/+0
* Move the tests into the test directory.Ned Batchelder2009-03-131-0/+1979