summaryrefslogtreecommitdiff
path: root/coverage/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Read and write plugin data to .coverageNed Batchelder2015-01-081-1/+6
|
* --fail-under can now be specified in the rcfile. #314Ned Batchelder2014-11-271-14/+22
|
* Try out pylint spelling. Kinda noisy, but fixed some stuff.Ned Batchelder2014-11-271-1/+1
|
* Clean up some pylint messagesNed Batchelder2014-11-231-2/+2
|
* Clean up the --skip-covered pull request.Ned Batchelder2014-11-231-1/+1
|
* Add skip-covered option.Krystian Kichewko2014-11-191-1/+8
|
* Remove more stuff only needed for the obsolete command syntaxNed Batchelder2014-10-261-46/+19
|
* Allow the --debug switch on any commandNed Batchelder2014-10-261-9/+6
|
* Remove the original command-line syntax.Ned Batchelder2014-10-081-89/+10
|
* Some error checking and more tests for concurrency control.Ned Batchelder2014-09-251-1/+4
|
* "concurrency" is a better name that "coroutine"Ned Batchelder2014-09-241-6/+6
| | | | | --HG-- rename : tests/test_coroutine.py => tests/test_concurrency.py
* Merged in carlgieringer/coverage.py (pull request #30)Ned Batchelder2014-09-241-6/+6
|\ | | | | | | Describe acceptable wildcard style
| * Describe acceptable wildcard styleCarl Gieringer2014-01-251-6/+6
| |
* | 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-18/+13
|\
| * Except clause can now use 'as', no need for lots of sys.exc_infoNed Batchelder2013-10-201-6/+3
| | | | | | | | | | --HG-- branch : 4.0
| * try/except/finally is ok now.Ned Batchelder2013-10-201-11/+10
| | | | | | | | | | --HG-- branch : 4.0
| * Get rid of our backward implementation of set, sorted, reversed, and rpartition.Ned Batchelder2013-10-191-1/+0
| | | | | | | | | | --HG-- branch : 4.0
* | Simple timing of commands.Ned Batchelder2013-10-231-1/+5
|/
* 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.