summaryrefslogtreecommitdiff
path: root/coverage/cmdline.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix brokenness in combining with an rcfile. #385Ned Batchelder2015-07-281-1/+1
|
* New config option: run:note lets you annotate the data file.Ned Batchelder2015-07-261-1/+1
|
* I thought these were alphabetized?Ned Batchelder2015-07-261-10/+10
|
* Use more specific names than 'plugins', since there will be more of them in ↵Ned Batchelder2015-07-241-1/+1
| | | | the future.
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-0/+3
|
* Refer to the project consistenly as coverage.py. #275Ned Batchelder2015-07-231-7/+7
|
* Move the raw data dumper to a more internal place.Ned Batchelder2015-07-221-8/+1
|
* A way to see the raw data in the data file.Ned Batchelder2015-07-221-4/+11
|
* Fix a test that used an unmaintained fake implementation for data.Ned Batchelder2015-07-191-5/+5
|
* Change CoverageData.summary() to CoverageData.line_counts()Ned Batchelder2015-07-161-1/+1
|
* Add a missing space to a help string.Ned Batchelder2015-05-171-1/+1
|
* Update docstring and command line help text.Christine Lytwynec2015-04-221-1/+4
| | | | | --HG-- branch : combine-from-multiple-dirs
* Added ability to combine coverage data files from multiple directories into ↵Christine Lytwynec2015-04-211-2/+3
| | | | | | | one file via command line args. --HG-- branch : combine-from-multiple-dirs
* Always make the current directory importable. #358Ned Batchelder2015-02-131-0/+4
|
* Wildly experimental multiprocessing support. Covers most of #117.Ned Batchelder2015-01-301-1/+3
|
* Bump the versions; docs now at readthedocsNed Batchelder2015-01-261-2/+3
|
* Change sysinfo to sys_infoNed Batchelder2015-01-241-2/+2
|
* Make the two forms of debug output more uniformNed Batchelder2015-01-241-3/+3
|
* Collect all the nudgy environment checks into coverage.envNed Batchelder2015-01-181-3/+8
|
* 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.