summaryrefslogtreecommitdiff
path: root/test/test_coverage.py
Commit message (Expand)AuthorAgeFilesLines
* Remove unittest main invocations.Ned Batchelder2010-03-151-6/+1
* Reports now emphasize missed lines over executed lines, since those are more ...Ned Batchelder2010-03-131-6/+6
* Split out the tests that really run a subprocess.Ned Batchelder2010-01-101-141/+2
* Update a few copyrights to 2010.Ned Batchelder2010-01-101-1/+0
* Parallel mode can be set from the .coveragerc file.Ned Batchelder2010-01-031-6/+52
* Delete files combined during 'coverage combine'. Fixes issue #40.Ned Batchelder2009-12-291-1/+6
* Simplify and test the default pragma exclusion.Ned Batchelder2009-12-271-0/+12
* Mark some lines as uncoverable, add some tests for some test methods.Ned Batchelder2009-12-261-0/+80
* version_info is a nicer way to check Python versions than hexversion is.Ned Batchelder2009-12-131-4/+4
* I never liked the assert_ method anyway. Use assertTrue and assertFalse inst...Ned Batchelder2009-12-131-10/+10
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-79/+79
* Tired of these TODO's that I'm not going to do anything about.Ned Batchelder2009-11-261-8/+0
* Rename our future-happy unittest methods to match their future versions, and ...Ned Batchelder2009-11-261-6/+6
* When reporting, don't fall over if there's no data to report on. Fixes issue ...Ned Batchelder2009-11-261-0/+26
* Split the oddball tests into their own file.Ned Batchelder2009-11-251-236/+0
* Add a test for leaking memory in the C extension. Windows only for now, kind...Ned Batchelder2009-11-221-0/+31
* Split out the report tests, to give them their due.Ned Batchelder2009-11-021-62/+1
* Some lint cleanupNed Batchelder2009-11-021-1/+2
* CodeParser couldn't deal with being passed the text directly.Ned Batchelder2009-11-021-1/+5
* Pylint is a stern taskmasterNed Batchelder2009-10-251-1/+2
* I guess the problem on 3.1 was in my C extension, because the recent changes ...Ned Batchelder2009-10-251-14/+13
* Report errors finding source files to execute more nicely. Fixes issue #23.Ned Batchelder2009-10-251-0/+6
* Treat missing source files nicer.Ned Batchelder2009-10-251-0/+22
* CamelCase looks weird, switch to underscore_separated.Ned Batchelder2009-10-161-143/+143
* More tidyingNed Batchelder2009-10-151-39/+57
* Tidying upNed Batchelder2009-10-151-1/+0
* Don't forget that we disabled a test for short-term reasons.Ned Batchelder2009-10-121-1/+1
* 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