| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | The old way of getting help text was just weird. | Ned Batchelder | 2012-11-04 | 1 | -16/+16 |
* | Issue #139: Now the report, html, and xml commands take a --fail-under=MIN sw... | Ned Batchelder | 2012-11-03 | 1 | -7/+20 |
* | A different (better) way to avoid warnings when no code has been run. | Ned Batchelder | 2011-02-12 | 1 | -4/+5 |
* | Don't warn about not collecting data if we never ran any code in the first pl... | Ned Batchelder | 2011-02-07 | 1 | -6/+11 |
* | Add tests and doc for Brandon's -m flag. | Ned Batchelder | 2011-02-06 | 1 | -2/+2 |
* | Added an actual "-m" command line option to turn on the module loader. | Brandon Craig Rhodes | 2011-02-02 | 1 | -6/+13 |
* | Wrote the basic logic for running a Python module or package as __main__. | Brandon Craig Rhodes | 2011-02-02 | 1 | -2/+5 |
* | Pylint 0.23.0 'deprecated' disable-msg. | Ned Batchelder | 2011-02-01 | 1 | -1/+1 |
* | If you called sys.exit() with no argument, coverage.py got tangled. Thanks, ... | Ned Batchelder | 2010-09-18 | 1 | -2/+5 |
* | When showing debug data, do something visible with empty lists. | Ned Batchelder | 2010-09-12 | 1 | -0/+2 |
* | Conform to recommended optparse use. | Ned Batchelder | 2010-06-13 | 1 | -16/+16 |
* | The 'source' option is a list of directories or packages to limit coverage's ... | Ned Batchelder | 2010-06-13 | 1 | -4/+12 |
* | Make include and omit work properly in the plugin. | Ned Batchelder | 2010-05-31 | 1 | -6/+4 |
* | Clean up the plugins more. Add the rcfile and include options. Omit can no ... | Ned Batchelder | 2010-05-31 | 1 | -19/+19 |
* | Fix old uses of 'prefixes' that are now 'patterns' | Ned Batchelder | 2010-05-24 | 1 | -9/+9 |
* | Omit and include are now filename patterns rather than prefixes. BACKWARD IN... | Ned Batchelder | 2010-05-23 | 1 | -6/+17 |
* | Format the code to pylint's liking, and fix up the docstrings for omit and in... | Ned Batchelder | 2010-05-15 | 1 | -2/+2 |
* | Hook up omit and include to the run command. Test the new cmdline behavior a... | Ned Batchelder | 2010-05-15 | 1 | -6/+10 |
* | Change 'requires' to 'include'. | Ned Batchelder | 2010-05-15 | 1 | -16/+16 |
* | add a --require option to specify directories which are required to be at the... | Zooko Ofsimplegeo | 2010-04-19 | 1 | -0/+17 |
* | If the user's code calls sys.exit(), honor the request and exit with that sta... | Ned Batchelder | 2010-02-28 | 1 | -6/+11 |
* | When emulating the Python interpreter, don't print SystemExits tracebacks. | Ned Batchelder | 2010-02-24 | 1 | -1/+6 |
* | Docs functionally complete for 3.3 | Ned Batchelder | 2010-02-24 | 1 | -2/+3 |
* | If the product code throws an exception, 'coverage run' now produces the same... | Ned Batchelder | 2010-02-19 | 1 | -2/+6 |
* | XML output file is configurable in .rc file. | Ned Batchelder | 2010-01-09 | 1 | -2/+0 |
* | Parallel mode can be set from the .coveragerc file. | Ned Batchelder | 2010-01-03 | 1 | -1/+1 |
* | Lint-friendly help noop function. | Ned Batchelder | 2009-12-29 | 1 | -1/+5 |
* | Add tests for 'coverage debug data' | Ned Batchelder | 2009-12-19 | 1 | -0/+1 |
* | Tidy up the command line notes. | Ned Batchelder | 2009-12-09 | 1 | -17/+17 |
* | A --rcfile argument to specify the config file. | Ned Batchelder | 2009-12-06 | 1 | -14/+19 |
* | Move some cmdline code to a more logical place. | Ned Batchelder | 2009-12-04 | 1 | -4/+5 |
* | Massive eol whitespace clean-up. | Ned Batchelder | 2009-12-02 | 1 | -28/+30 |
* | A --version option for the command line. | Ned Batchelder | 2009-12-01 | 1 | -15/+27 |
* | The command help said --branch was HIGHLY EXPERIMENTAL!! | Ned Batchelder | 2009-12-01 | 1 | -1/+1 |
* | Add a little bit of branch information to 'debug data' | Ned Batchelder | 2009-11-27 | 1 | -0/+3 |
* | Treat missing source files nicer. | Ned Batchelder | 2009-10-25 | 1 | -2/+10 |
* | Everything should derive from object. | Ned Batchelder | 2009-10-24 | 1 | -2/+2 |
* | Basic plumbing for a --branch option. | Ned Batchelder | 2009-10-07 | 1 | -0/+7 |
* | Help should focus on the new command syntax but also have a way to get help o... | Ned Batchelder | 2009-10-04 | 1 | -7/+11 |
* | Added a 'coverage debug' command to get internal information for diagnosing p... | Ned Batchelder | 2009-09-27 | 1 | -3/+41 |
* | XML command writes to coverage.xml, and takes a -o argument to write it somew... | Ned Batchelder | 2009-09-25 | 1 | -1/+11 |
* | One more place to indirect the url. | Ned Batchelder | 2009-09-25 | 1 | -1/+1 |
* | Don't use -o for 'omit' in the new command syntax: it should mean output. | Ned Batchelder | 2009-09-24 | 1 | -2/+8 |
* | The best way to get py3k support: same source runs on both, with some contort... | Ned Batchelder | 2009-09-22 | 1 | -4/+4 |
* | 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 |
* | 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 |