Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Cleanup in the HTML code. | Ned Batchelder | 2009-09-24 | 1 | -14/+10 | |
| | ||||||
* | Get the test working properly, including adding a usable diff comparison ↵ | Ned Batchelder | 2009-09-23 | 1 | -3/+2 | |
| | | | | when tests fail. Also make it all work under Py3k. | |||||
* | Some XML report fixes, and a very basic test. | Ned Batchelder | 2009-09-23 | 3 | -6/+5 | |
| | ||||||
* | Syntax coloring in the HTML reports. | Ned Batchelder | 2009-09-23 | 3 | -26/+96 | |
| | ||||||
* | Simple cleanup | Ned Batchelder | 2009-09-22 | 1 | -2/+1 | |
| | ||||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 9 | -60/+67 | |
| | | | | contortions. | |||||
* | More progress on multi-head kits, though I'm not sure it will work. | Ned Batchelder | 2009-09-18 | 2 | -2/+7 | |
| | ||||||
* | Tracer extension with non-functioning PEP 3121 stuff trimmed out. | Ned Batchelder | 2009-09-17 | 1 | -24/+3 | |
| | ||||||
* | Tracer extension with Py3k support. This is part of what PEP 3121 told me ↵ | Ned Batchelder | 2009-09-17 | 1 | -10/+97 | |
| | | | | to do, but there's parts they didn't implement (!?) so I'm going to scrape a lot of it off. | |||||
* | Capture the full path to the data file when execution starts. Fixes issue 24. | Ned Batchelder | 2009-09-14 | 1 | -17/+8 | |
| | ||||||
* | Bump version number to 3.1b1. | Ned Batchelder | 2009-09-13 | 1 | -1/+1 | |
| | ||||||
* | Tweak xml help | Ned Batchelder | 2009-09-13 | 1 | -1/+1 | |
| | ||||||
* | XML reporting hooked up, but not everything is right: a test_farm test fails ↵ | Ned Batchelder | 2009-09-13 | 3 | -28/+24 | |
| | | | | | | | now?? --HG-- rename : coverage/xml.py => coverage/xmlreport.py | |||||
* | First part of wiring up xml reports. | Ned Batchelder | 2009-09-13 | 3 | -33/+40 | |
| | ||||||
* | Minor help tweaks | Ned Batchelder | 2009-09-13 | 1 | -2/+4 | |
| | ||||||
* | Bill Hart's original cobertura.py renamed to xml.py. | Ned Batchelder | 2009-09-13 | 1 | -0/+139 | |
| | ||||||
* | A nicer way to write help text. | Ned Batchelder | 2009-09-13 | 1 | -9/+9 | |
| | ||||||
* | Forgot to add html to the list of commands | Ned Batchelder | 2009-09-13 | 1 | -0/+1 | |
| | ||||||
* | All commands are now available as new-style commands. | Ned Batchelder | 2009-09-13 | 1 | -9/+74 | |
| | ||||||
* | Proper help handling for the new command-line syntax. | Ned Batchelder | 2009-09-12 | 1 | -19/+82 | |
| | ||||||
* | First new-style command: run | Ned Batchelder | 2009-09-12 | 1 | -35/+44 | |
| | ||||||
* | Major changes to introduce new command line syntax. | Ned Batchelder | 2009-09-12 | 1 | -78/+174 | |
| | ||||||
* | More command line cleanup. | Ned Batchelder | 2009-09-12 | 1 | -39/+48 | |
| | ||||||
* | Clean up the optparse support. | Ned Batchelder | 2009-09-11 | 1 | -63/+29 | |
| | ||||||
* | Switch from getopt to optparse. Thanks, Ben Finney! | Ned Batchelder | 2009-09-10 | 1 | -60/+129 | |
| | ||||||
* | Minor tweaks to the command-line help. | Ned Batchelder | 2009-09-09 | 1 | -1/+1 | |
| | ||||||
* | Start using Mock to test the command-line code. | Ned Batchelder | 2009-09-09 | 1 | -4/+12 | |
| | ||||||
* | Explicitly request pickle protocol 2 so that Py3-written pickles can be read ↵ | Ned Batchelder | 2009-09-06 | 1 | -1/+1 | |
| | | | | by Py2. | |||||
* | Minor templite tweaks. | Ned Batchelder | 2009-09-06 | 1 | -1/+2 | |
| | ||||||
* | Fix a problem with DecoratorTools fiddling with the trace function and ↵ | Ned Batchelder | 2009-08-09 | 3 | -72/+103 | |
| | | | | screwing us up. Now the Python trace function is simpler, with no variability of registered trace function. Fixes bugs #12 and #13. | |||||
* | Remove stray comment | Ned Batchelder | 2009-08-09 | 1 | -1/+0 | |
| | ||||||
* | Clean up some new lint warnings. | Ned Batchelder | 2009-07-12 | 1 | -1/+2 | |
| | ||||||
* | Narrow the amount of code in a coverage start/stop window in a test so that ↵ | Ned Batchelder | 2009-07-12 | 2 | -0/+10 | |
| | | | | 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 | -2/+9 | |
| | | | | matter. | |||||
* | Have the tests use the script explicitly until I can figure out how to ↵ | Ned Batchelder | 2009-07-09 | 1 | -1/+7 | |
| | | | | install a usable script for Py3k | |||||
* | Py3k: unify subprocess and popen4. | Ned Batchelder | 2009-07-08 | 1 | -0/+27 | |
| | ||||||
* | Various Py3k fixes: remove gratuitous print, don't test the print statement, ↵ | Ned Batchelder | 2009-07-08 | 2 | -4/+22 | |
| | | | | deal with __cmp__ ugliness, etc. | |||||
* | Builtins moved in Py 3.x | Ned Batchelder | 2009-07-08 | 1 | -1/+9 | |
| | ||||||
* | Remove a redundant import. | Ned Batchelder | 2009-07-07 | 1 | -2/+0 | |
| | ||||||
* | Make reading the lnotab structure work in both 2.x and 3.x | Ned Batchelder | 2009-07-07 | 1 | -4/+15 | |
| | ||||||
* | Fix the name of CHANGES.txt | Ned Batchelder | 2009-07-06 | 1 | -1/+1 | |
| | ||||||
* | A better way to fix the missing-return-after-exception problem in the trace ↵ | Ned Batchelder | 2009-07-06 | 2 | -70/+71 | |
| | | | | function: no pyexpat specifics, and py 2.3 still uses C trace function. | |||||
* | Fix Python 2.3's exception tracing by always using a dumbed-down Python ↵ | Ned Batchelder | 2009-07-04 | 1 | -18/+52 | |
| | | | | tracer there. | |||||
* | Move the backward-compatibility definitions to a common file. There seems to ↵ | Ned Batchelder | 2009-07-03 | 3 | -18/+26 | |
| | | | | be no pretty way to do this. | |||||
* | Clean up the `set` definitions for 2.3 (these should go someplace common). | Ned Batchelder | 2009-07-03 | 1 | -3/+4 | |
| | ||||||
* | I meant for the list of lines to be sorted. | Ned Batchelder | 2009-07-03 | 1 | -2/+14 | |
| | ||||||
* | Refactor a little bit so the tests can get at the data more easily. | Ned Batchelder | 2009-07-03 | 1 | -6/+9 | |
| | ||||||
* | Expat bug reported and noted. | Ned Batchelder | 2009-06-28 | 1 | -3/+6 | |
| | ||||||
* | Epic bug: pyexpat fiddles incorrectly with the systrace function. This is a ↵ | Ned Batchelder | 2009-06-28 | 1 | -0/+19 | |
| | | | | hack to make it behave correctly with coverage.py. Fixes bug #10. | |||||
* | Add a bunch of logging to tracer.c to help find tracing problems. | Ned Batchelder | 2009-06-28 | 1 | -9/+66 | |
| |