Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Mark some impossible-to-cover lines | Ned Batchelder | 2016-06-25 | 2 | -4/+4 | |
| | | ||||||
* | | Change an always-taken elif to an else | Ned Batchelder | 2016-06-25 | 1 | -1/+2 | |
| | | ||||||
* | | Fixes two overlookeds self.skip calls | Ned Batchelder | 2016-06-25 | 1 | -2/+2 | |
| | | ||||||
* | | Combine no longer appends by default | Ned Batchelder | 2016-06-25 | 6 | -6/+28 | |
| | | | | | | | | | | | | | | | | | | | | | | Combine used to always load an existing .coverage file. This lead to confusing results and extra tox-clean steps. Now the default is to not load the existing file, though a new --append switch on coverage combine gets you that behavior if you need it. This also pointed up an issue with concurrency=multiprocessing, which is that the child processes automatically used parallel=True, but the parent process did not. Now concurrency=multiprocessing implies parallel=True. | |||||
* | | Prevent subprocess measurement from measuring coverage commands. #492 | Ned Batchelder | 2016-06-24 | 3 | -4/+22 | |
| | | ||||||
* | | Clean up the previous commit that adds a test for #492 | Ned Batchelder | 2016-06-24 | 2 | -2/+6 | |
| | | ||||||
* | | Cleanup test case #492 | Dan Riti | 2016-06-24 | 1 | -0/+7 | |
| | | ||||||
* | | Add test case that demonstrates problem #492 | Dan Riti | 2016-06-24 | 1 | -3/+29 | |
| | | ||||||
* | | No need to mention object. | Ned Batchelder | 2016-06-23 | 1 | -1/+1 | |
| | | ||||||
* | | A SimpleRepr class to inherit a simple __repr__ implementation. | Ned Batchelder | 2016-06-23 | 2 | -2/+12 | |
| | | ||||||
* | | A real name for karlw00t | Ned Batchelder | 2016-06-19 | 2 | -2/+2 | |
| | | ||||||
* | | Use latest of unittest-mixins | Ned Batchelder | 2016-06-18 | 1 | -1/+1 | |
| | | ||||||
* | | Use unittest-mixins 1.1 | Ned Batchelder | 2016-06-12 | 1 | -2/+2 | |
| | | ||||||
* | | An example of using aspectlib to debug how people are calling coverage | Ned Batchelder | 2016-06-12 | 1 | -0/+14 | |
| | | ||||||
* | | This isn't used, but I liked it | Ned Batchelder | 2016-06-12 | 1 | -0/+256 | |
| | | ||||||
* | | Another use of try_execfile.py to adjust | Ned Batchelder | 2016-06-12 | 2 | -5/+4 | |
| | | ||||||
* | | Move try_execfile.py to an unambiguous place | Ned Batchelder | 2016-06-12 | 4 | -17/+26 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Where it was, we were counting on "tests" referring to coverage.py's own tests directory, but a -e install of a helper like unittest-mixins could provide a tests directory, which prevented the imports we needed for the tests. Moving try_execfile.py to a new subdirectory with a less-common name solves the problem. --HG-- rename : tests/try_execfile.py => tests/modules/process_test/try_execfile.py | |||||
* | | Use standard skipTest, which unittest-mixins will override. | Ned Batchelder | 2016-06-12 | 10 | -30/+23 | |
| | | ||||||
* | | Final touch on docs for sort column | Ned Batchelder | 2016-06-10 | 2 | -3/+3 | |
| | | ||||||
* | | Properly handle invalid sorting option | Ned Batchelder | 2016-06-09 | 2 | -3/+14 | |
| | | ||||||
* | | Fix these new tests to really test the code | Ned Batchelder | 2016-06-09 | 2 | -19/+64 | |
| | | ||||||
* | | More tweaks to report sorting | Ned Batchelder | 2016-06-09 | 2 | -12/+17 | |
| | | | | | | | | | | | | | | | | * Option is case-insensitive. * Can no longer sort by "Missing", because it's nonsense. * Can sort by the branch-sensitive columns. | |||||
* | | Next version will be 4.2 | Ned Batchelder | 2016-06-09 | 1 | -1/+1 | |
| | | ||||||
* | | Move test_summary_class.py into test_summary.py | Ned Batchelder | 2016-06-08 | 2 | -67/+60 | |
| | | ||||||
* | | Add Dan Wandschneider for #199 | Ned Batchelder | 2016-06-08 | 1 | -0/+1 | |
| | | ||||||
* | | Clean up #199 | Ned Batchelder | 2016-06-08 | 4 | -27/+29 | |
| | | ||||||
* | | Make report's 'sort' option available only via the configuration file, not ↵ | Dan Wandschneider | 2016-06-08 | 5 | -20/+7 | |
| | | | | | | | | available on the command line. | |||||
* | | Use caoverage.py's canonical backwards compatibility infrastructure in new test. | Dan Wandschneider | 2016-06-08 | 2 | -18/+10 | |
| | | ||||||
* | | Fix test failures in Python 2.6 | Dan Wandschneider | 2016-06-08 | 1 | -6/+20 | |
| | | ||||||
* | | Issue 199: Sort text report. | Dan Wandschneider | 2016-06-08 | 5 | -5/+49 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows sorting of the text report based on: Name, Stmts, Miss, Cover Tested on Mac with Python 2.7.11 and Python 3.5 Help message for the new option is: python -m coverage report -h ... --sort=SORT Sort report by a column. Valid values are: Name, Stmts, Miss, Cover. ... | |||||
* | | Add unit-level test for the SummaryReporter | Dan Wandschneider | 2016-06-08 | 1 | -0/+53 | |
| | | | | | | | | Tests configuration of the report method of SummaryReader | |||||
* | | Not sure how to get 3.5, so let's just drop it for now | Ned Batchelder | 2016-06-04 | 1 | -10/+0 | |
| | | ||||||
* | | Note that test_helpers is gone | Ned Batchelder | 2016-06-04 | 1 | -0/+4 | |
| | | ||||||
* | | Oops, broke a test. | Ned Batchelder | 2016-06-02 | 1 | -1/+1 | |
| | | ||||||
* | | Get 3.5 tests running on Travis | Ned Batchelder | 2016-06-02 | 1 | -0/+9 | |
| | | ||||||
* | | Extirpate trailing spaces | Ned Batchelder | 2016-06-02 | 1 | -4/+4 | |
| | | ||||||
* | | Finish #396. | Ned Batchelder | 2016-06-02 | 2 | -2/+7 | |
| | | ||||||
* | | Emit a warning when an invalid file is detected with ignore_errors=true. | Matthew Boehm | 2016-06-02 | 3 | -3/+20 | |
| | | | | | | | | | | Previously, when an invalid file was encountered, it would be silently ignored. | |||||
* | | Paperwork for #231 | Ned Batchelder | 2016-06-02 | 2 | -0/+6 | |
| | | ||||||
* | | issue #231 on BB: provide more verbose error message | nland | 2016-06-02 | 1 | -1/+3 | |
| | | ||||||
* | | Finish paperwork for #478 | Ned Batchelder | 2016-06-02 | 2 | -0/+5 | |
| | | ||||||
* | | Fix __main__.py showing up in help output | scottbelden | 2016-06-02 | 2 | -0/+11 | |
| | | ||||||
* | | Update changes for #454 | Ned Batchelder | 2016-06-02 | 1 | -1/+6 | |
| | | ||||||
* | | Add Matthew Boehm to AUTHORS.txt | Matthew Boehm | 2016-06-02 | 1 | -0/+1 | |
| | | ||||||
* | | Add documentation for `coverage debug config` | Matthew Boehm | 2016-06-02 | 1 | -2/+5 | |
| | | ||||||
* | | Add support for `coverage debug config` | Matthew Boehm | 2016-06-02 | 2 | -2/+13 | |
| | | | | | | | | | | Previously, coverage --debug=config worked, but `coverage debug config` didn't. Fixes #454 | |||||
* | | Bump the version to 4.1.1a1 | Ned Batchelder | 2016-06-02 | 1 | -1/+1 | |
| | | ||||||
* | | Finish up the fix for #298 | Ned Batchelder | 2016-06-02 | 3 | -8/+12 | |
| | | ||||||
* | | Merged in karlw00t/coverage.py/issues-298 (pull request #84) | Ned Batchelder | 2016-06-02 | 1 | -0/+14 | |
|\ \ | | | | | | | | | | Adding visual indicators to column sorting in HTML output | |||||
| * | | Adding visual indicators to column sorting in HTML output | karlw00t | 2016-06-02 | 1 | -0/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Unicode arrows added to the end of text on a sorted column - Sorted column header always have grey background https://bitbucket.org/ned/coveragepy/issues/298 --HG-- branch : issues-298 |