Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | The best way to get py3k support: same source runs on both, with some ↵ | Ned Batchelder | 2009-09-22 | 1 | -4/+4 | |
| | | | | contortions. | |||||
* | 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 | 1 | -4/+5 | |
| | | | | | | | now?? --HG-- rename : coverage/xml.py => coverage/xmlreport.py | |||||
* | First part of wiring up xml reports. | Ned Batchelder | 2009-09-13 | 1 | -0/+14 | |
| | ||||||
* | Minor help tweaks | Ned Batchelder | 2009-09-13 | 1 | -2/+4 | |
| | ||||||
* | 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 | |
| | ||||||
* | Fix a problem with DecoratorTools fiddling with the trace function and ↵ | Ned Batchelder | 2009-08-09 | 1 | -4/+9 | |
| | | | | screwing us up. Now the Python trace function is simpler, with no variability of registered trace function. Fixes bugs #12 and #13. | |||||
* | Add a short description to the command line help. | Ned Batchelder | 2009-05-16 | 1 | -0/+1 | |
| | ||||||
* | cover_stdlib wasn't quite right, it controls covering the entire Python ↵ | Ned Batchelder | 2009-05-12 | 1 | -3/+3 | |
| | | | | library, so cover_pylib it is. | |||||
* | Less-magical coverage api: load() method loads data from data file, no more ↵ | Ned Batchelder | 2009-05-12 | 1 | -3/+6 | |
| | | | | save() on process exit. | |||||
* | Remove some lambdas | Ned Batchelder | 2009-05-11 | 1 | -1/+1 | |
| | ||||||
* | Re-think the api to set the data file name and suffix. | Ned Batchelder | 2009-05-11 | 1 | -1/+1 | |
| | ||||||
* | Lint clean-ups. | Ned Batchelder | 2009-05-05 | 1 | -0/+1 | |
| | ||||||
* | Pass values into coverage's contructor rather than set properties. | Ned Batchelder | 2009-05-04 | 1 | -3/+4 | |
| | ||||||
* | The name of the project is Coverage, not coverage.py. | Ned Batchelder | 2009-04-30 | 1 | -5/+5 | |
| | ||||||
* | Python stdlib is now not measured by default. If needed, turn it on with ↵coverage-3.0b2 | Ned Batchelder | 2009-04-29 | 1 | -2/+5 | |
| | | | | the -L switch. | |||||
* | Don't spew the whole help message when there's a problem with command-line ↵ | Ned Batchelder | 2009-04-28 | 1 | -5/+19 | |
| | | | | arguments. | |||||
* | Finish up the cmdline details for -b | Ned Batchelder | 2009-04-28 | 1 | -11/+18 | |
| | ||||||
* | Last refactor dropped some important arguments. | Ned Batchelder | 2009-04-27 | 1 | -4/+9 | |
| | ||||||
* | Refactor some report plumbing. There's a simpler way... | Ned Batchelder | 2009-04-26 | 1 | -11/+3 | |
| | ||||||
* | HTML reporting, phase 0. | Ned Batchelder | 2009-04-20 | 1 | -3/+10 | |
| | ||||||
* | Pylint tweaks | Ned Batchelder | 2009-04-12 | 1 | -1/+3 | |
| | ||||||
* | Use a finally clause to ensure that coverage measurement is stopped no ↵ | Ned Batchelder | 2009-04-04 | 1 | -2/+4 | |
| | | | | matter how the main program terminates. | |||||
* | Even better execution of main files. | Ned Batchelder | 2009-04-04 | 1 | -3/+3 | |
| | ||||||
* | Remove unneeded import | Ned Batchelder | 2009-04-03 | 1 | -1/+1 | |
| | ||||||
* | Factor execfile out of cmdline, so that we can call python main programs ↵ | Ned Batchelder | 2009-04-03 | 1 | -3/+2 | |
| | | | | properly: now they get the correct value for __file__. | |||||
* | The cmdline code now returns a status code. | Ned Batchelder | 2009-03-15 | 1 | -3/+10 | |
| | ||||||
* | Refactor the annotate code into annotate.py | Ned Batchelder | 2009-03-13 | 1 | -1/+3 | |
| | ||||||
* | Refactor the reporting function into the SummaryReporter class. | Ned Batchelder | 2009-03-12 | 1 | -1/+4 | |
| | ||||||
* | Wondering about the mechanics of running the user's script. | Ned Batchelder | 2009-03-12 | 1 | -2/+6 | |
| | ||||||
* | Defaulting report and annotate to all files now happens inside coverage, ↵ | Ned Batchelder | 2009-03-11 | 1 | -4/+0 | |
| | | | | rather than in CoverageScript. | |||||
* | Split out the filename operations; Morf -> CodeUnit. | Ned Batchelder | 2009-03-11 | 1 | -4/+2 | |
| | | | | | --HG-- rename : coverage/morf.py => coverage/codeunit.py | |||||
* | Yank morfs into their own class. This doesn't work yet. | Ned Batchelder | 2009-03-10 | 1 | -1/+1 | |
| | ||||||
* | Initial coverage.py 3.0 beta 1 | Ned Batchelder | 2009-03-05 | 1 | -0/+149 | |