summaryrefslogtreecommitdiff
path: root/coverage/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Now the title of the HTML report can be set.Ned Batchelder2012-11-091-1/+8
|
* Ugh. Setting the xml output file in the .coveragerc file simply didn't ↵Ned Batchelder2012-11-071-1/+0
| | | | work. Now it does.
* Entry pointNed Batchelder2012-11-051-2/+2
|
* Refactor the command-line code.Ned Batchelder2012-11-041-115/+148
|
* The old way of getting help text was just weird.Ned Batchelder2012-11-041-16/+16
|
* Issue #139: Now the report, html, and xml commands take a --fail-under=MIN ↵Ned Batchelder2012-11-031-7/+20
| | | | switch, and exit with 2 if the coverage is less than MIN.
* A different (better) way to avoid warnings when no code has been run.Ned Batchelder2011-02-121-4/+5
|
* Don't warn about not collecting data if we never ran any code in the first ↵Ned Batchelder2011-02-071-6/+11
| | | | place.
* Add tests and doc for Brandon's -m flag.Ned Batchelder2011-02-061-2/+2
|
* Added an actual "-m" command line option to turn on the module loader.Brandon Craig Rhodes2011-02-021-6/+13
|
* Wrote the basic logic for running a Python module or package as __main__.Brandon Craig Rhodes2011-02-021-2/+5
|
* Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-011-1/+1
|
* If you called sys.exit() with no argument, coverage.py got tangled. Thanks, ↵Ned Batchelder2010-09-181-2/+5
| | | | Brodie Rao.
* When showing debug data, do something visible with empty lists.Ned Batchelder2010-09-121-0/+2
|
* Conform to recommended optparse use.Ned Batchelder2010-06-131-16/+16
|
* The 'source' option is a list of directories or packages to limit coverage's ↵Ned Batchelder2010-06-131-4/+12
| | | | attention.
* Make include and omit work properly in the plugin.Ned Batchelder2010-05-311-6/+4
|
* Clean up the plugins more. Add the rcfile and include options. Omit can no ↵Ned Batchelder2010-05-311-19/+19
| | | | longer be a file of omissions, use the rcfile for that.
* Fix old uses of 'prefixes' that are now 'patterns'Ned Batchelder2010-05-241-9/+9
|
* Omit and include are now filename patterns rather than prefixes. BACKWARD ↵Ned Batchelder2010-05-231-6/+17
| | | | INCOMPATIBLE change.
* Format the code to pylint's liking, and fix up the docstrings for omit and ↵Ned Batchelder2010-05-151-2/+2
| | | | include.
* Hook up omit and include to the run command. Test the new cmdline behavior ↵Ned Batchelder2010-05-151-6/+10
| | | | and run behavior.
* Change 'requires' to 'include'.Ned Batchelder2010-05-151-16/+16
|
* add a --require option to specify directories which are required to be at ↵Zooko Ofsimplegeo2010-04-191-0/+17
| | | | | | | | | the beginning of the path for any file that is going to be included in code coverage make the --omit and --require options apply to code coverage generation as well as to reporting; This speeds up tests from 6 seconds to 1 second on my system, as well as making the resulting .coverage db include *only* the code that I care about, which helps with my code coverage progression/regression tool. --HG-- extra : transplant_source : %1F.4%81%E8%DA%0B%D0%D5%9D%89%DE%E1vY%E6%CD%1A%EB%C9
* If the user's code calls sys.exit(), honor the request and exit with that ↵Ned Batchelder2010-02-281-6/+11
| | | | status. Fixes issue #50.
* When emulating the Python interpreter, don't print SystemExits tracebacks.Ned Batchelder2010-02-241-1/+6
|
* Docs functionally complete for 3.3Ned Batchelder2010-02-241-2/+3
|
* If the product code throws an exception, 'coverage run' now produces the ↵Ned Batchelder2010-02-191-2/+6
| | | | same traceback as 'python' would, without the coverage-internal frames distracting from your code.
* XML output file is configurable in .rc file.Ned Batchelder2010-01-091-2/+0
| | | | | --HG-- rename : test/farm/html/run_a_xml.py => test/farm/html/run_a_xml_1.py
* Parallel mode can be set from the .coveragerc file.Ned Batchelder2010-01-031-1/+1
|
* Lint-friendly help noop function.Ned Batchelder2009-12-291-1/+5
|
* Add tests for 'coverage debug data'Ned Batchelder2009-12-191-0/+1
|
* Tidy up the command line notes.Ned Batchelder2009-12-091-17/+17
|
* A --rcfile argument to specify the config file.Ned Batchelder2009-12-061-14/+19
|
* Move some cmdline code to a more logical place.Ned Batchelder2009-12-041-4/+5
|
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-28/+30
|
* A --version option for the command line.Ned Batchelder2009-12-011-15/+27
|
* The command help said --branch was HIGHLY EXPERIMENTAL!!Ned Batchelder2009-12-011-1/+1
|
* Add a little bit of branch information to 'debug data'Ned Batchelder2009-11-271-0/+3
|
* Treat missing source files nicer.Ned Batchelder2009-10-251-2/+10
|
* Everything should derive from object.Ned Batchelder2009-10-241-2/+2
|
* Basic plumbing for a --branch option.Ned Batchelder2009-10-071-0/+7
|
* Help should focus on the new command syntax but also have a way to get help ↵Ned Batchelder2009-10-041-7/+11
| | | | on the old.
* Added a 'coverage debug' command to get internal information for diagnosing ↵Ned Batchelder2009-09-271-3/+41
| | | | problems. Also, all commands should at least take -h.
* XML command writes to coverage.xml, and takes a -o argument to write it ↵Ned Batchelder2009-09-251-1/+11
| | | | somewhere else.
* One more place to indirect the url.Ned Batchelder2009-09-251-1/+1
|
* Don't use -o for 'omit' in the new command syntax: it should mean output.Ned Batchelder2009-09-241-2/+8
|
* The best way to get py3k support: same source runs on both, with some ↵Ned Batchelder2009-09-221-4/+4
| | | | contortions.
* Tweak xml helpNed Batchelder2009-09-131-1/+1
|
* XML reporting hooked up, but not everything is right: a test_farm test fails ↵Ned Batchelder2009-09-131-4/+5
| | | | | | | now?? --HG-- rename : coverage/xml.py => coverage/xmlreport.py