Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Narrow the amount of code in a coverage start/stop window in a test so that ↵ | Ned Batchelder | 2009-07-12 | 1 | -8/+11 |
| | | | | the differences in 2.x and 3.x scoping rules don't change the results of the test. Also, some commented-out logging of the trace machinery that helped me find the problem. Now all tests pass on Python 3.1! | ||||
* | Py3k: some output is bytes instead of string, so convert since it doesn't ↵ | Ned Batchelder | 2009-07-09 | 1 | -4/+4 |
| | | | | matter. | ||||
* | Py3k: exec is a function now, not a statement. Update the tests accordingly. | Ned Batchelder | 2009-07-08 | 1 | -29/+62 |
| | |||||
* | Py3k: unify subprocess and popen4. | Ned Batchelder | 2009-07-08 | 1 | -4/+4 |
| | |||||
* | Various Py3k fixes: remove gratuitous print, don't test the print statement, ↵ | Ned Batchelder | 2009-07-08 | 1 | -31/+34 |
| | | | | deal with __cmp__ ugliness, etc. | ||||
* | Add a test that proves 2.3 has problems measuring exceptions. Now to figure ↵ | Ned Batchelder | 2009-07-03 | 1 | -0/+101 |
| | | | | out what to do about it... | ||||
* | I forget why this test was neutered. | Ned Batchelder | 2009-06-28 | 1 | -1/+1 |
| | |||||
* | Epic bug: pyexpat fiddles incorrectly with the systrace function. This is a ↵ | Ned Batchelder | 2009-06-28 | 1 | -1/+46 |
| | | | | hack to make it behave correctly with coverage.py. Fixes bug #10. | ||||
* | Don't measure the coverage package itself. Inspired by, but does not fix, ↵ | Ned Batchelder | 2009-06-24 | 1 | -7/+13 |
| | | | | issue #8. | ||||
* | Remove the fixed limit on recursion depth. Fixes issue #9. | Ned Batchelder | 2009-06-23 | 1 | -0/+31 |
| | |||||
* | Point to new docs; more doc tweaks. | Ned Batchelder | 2009-06-13 | 1 | -1/+1 |
| | |||||
* | Give the singleton module interface a way to keep the old behavior of ↵ | Ned Batchelder | 2009-05-12 | 1 | -2/+1 |
| | | | | auto-loading and -saving data as needed. | ||||
* | makeFile is more useful if it doesn't append .py | Ned Batchelder | 2009-05-08 | 1 | -4/+4 |
| | |||||
* | Split api tests into their own file. | Ned Batchelder | 2009-05-04 | 1 | -171/+0 |
| | |||||
* | Clarify what Collector.start and .stop do to other threads. | Ned Batchelder | 2009-05-02 | 1 | -3/+4 |
| | |||||
* | The name of the project is Coverage, not coverage.py. | Ned Batchelder | 2009-04-30 | 1 | -1/+1 |
| | |||||
* | Python stdlib is now not measured by default. If needed, turn it on with ↵coverage-3.0b2 | Ned Batchelder | 2009-04-29 | 1 | -0/+38 |
| | | | | the -L switch. | ||||
* | Split out the cmdline.py tests. | Ned Batchelder | 2009-04-28 | 1 | -30/+0 |
| | |||||
* | HTML reporting, phase 0. | Ned Batchelder | 2009-04-20 | 1 | -1/+1 |
| | |||||
* | Commonalize more of the test case code. | Ned Batchelder | 2009-04-18 | 1 | -15/+2 |
| | |||||
* | Split CoverageTest into its own module so that it can be used by more tests. | Ned Batchelder | 2009-04-17 | 1 | -161/+2 |
| | |||||
* | A cleanup from the test class rename. | Ned Batchelder | 2009-04-17 | 1 | -2/+2 |
| | |||||
* | Finally realized that unit test classes should be named like any other ↵ | Ned Batchelder | 2009-04-17 | 1 | -11/+11 |
| | | | | class: after the instance they create. | ||||
* | If a module was loaded from a .pyc, report its file as .py | Ned Batchelder | 2009-04-15 | 1 | -0/+51 |
| | |||||
* | It's ok to ask the data module about files that were never measured. Fixes ↵ | Ned Batchelder | 2009-04-14 | 1 | -0/+25 |
| | | | | <<issue 2>>. | ||||
* | Remove obsolete test infrastructure that the farm took over. | Ned Batchelder | 2009-03-14 | 1 | -31/+1 |
| | |||||
* | Don't suppress stdout in tests any more, nose can handle that for us. Only ↵ | Ned Batchelder | 2009-03-14 | 1 | -23/+18 |
| | | | | the few tests that really need to capture stdout do it now. | ||||
* | The first working farm test, obsoleting a test_coverage.py test. | Ned Batchelder | 2009-03-14 | 1 | -5/+0 |
| | |||||
* | Move the tests into the test directory. | Ned Batchelder | 2009-03-13 | 1 | -0/+1979 |
--HG-- rename : coverage_coverage.py => test/coverage_coverage.py rename : test_coverage.py => test/test_coverage.py |