summaryrefslogtreecommitdiff
path: root/coverage/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
* Round fail-under result same as others. Fixed #284.Ned Batchelder2014-06-031-0/+8
|
* Move shell globbing into cmdline.pyNed Batchelder2014-05-181-2/+15
|
* Peter Portante's coroutine support, but it doesn't work yet.Ned Batchelder2014-01-091-0/+7
|
* Merged 4.0 to defaultNed Batchelder2013-12-131-1/+5
|\
| * Simple timing of commands.Ned Batchelder2013-10-231-1/+5
| |
* | Except clause can now use 'as', no need for lots of sys.exc_infoNed Batchelder2013-10-201-6/+3
| |
* | try/except/finally is ok now.Ned Batchelder2013-10-201-11/+10
| |
* | Get rid of our backward implementation of set, sorted, reversed, and rpartition.Ned Batchelder2013-10-191-1/+0
|/
* More --debug options, split code into separate objects.Ned Batchelder2013-09-081-1/+1
|
* Better to leave the space out.Ned Batchelder2013-09-061-1/+1
|
* Move the info formatting into its own function.Ned Batchelder2013-09-061-10/+3
|
* New flag for run: --debug, can trace why files aren't being traced.Ned Batchelder2013-09-041-0/+8
|
* Get sys.path right when running modules with -m, fixes #207 and #242.Ned Batchelder2013-04-201-2/+11
|
* Nicer formatting for lists in 'debug sys'Ned Batchelder2012-11-221-2/+3
|
* No longer see a mysterious exception when not able to run code: ↵Ned Batchelder2012-11-111-1/+1
| | | | AttributeError: 'NoneType' object has no attribute 'isabs'. #153
* Upgrading pylint means fixing more nits.Ned Batchelder2012-11-101-2/+2
|
* 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.
* 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
|
* 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
|