Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | style: double quotes | Ned Batchelder | 2023-03-22 | 1 | -63/+63 |
| | |||||
* | feat: add extend_exclude option | Alpha Chen | 2023-02-22 | 1 | -0/+3 |
| | |||||
* | feat: the debug output file can be specified in the config file. #1319 | Ned Batchelder | 2023-01-22 | 1 | -0/+2 |
| | |||||
* | mypy: progress on test_plugins.py | Ned Batchelder | 2023-01-12 | 1 | -2/+3 |
| | |||||
* | style: use good style for annotated defaults parameters | Ned Batchelder | 2023-01-05 | 1 | -2/+2 |
| | |||||
* | mypy: use __future__ uniformly in checked files | Ned Batchelder | 2023-01-05 | 1 | -0/+1 |
| | |||||
* | mypy: test_debug.py test_execfile.py test_filereporter.py test_files.py | Ned Batchelder | 2023-01-04 | 1 | -9/+11 |
| | |||||
* | mypy: summary.py, test_summary.py, tests/coveragetest.py | Ned Batchelder | 2023-01-04 | 1 | -1/+1 |
| | |||||
* | mypy: misc.py, test_misc.py | Ned Batchelder | 2023-01-03 | 1 | -1/+1 |
| | |||||
* | mypy: test_config.py, test_context.py | Ned Batchelder | 2023-01-03 | 1 | -1/+1 |
| | |||||
* | mypy: add env.py | Ned Batchelder | 2022-12-31 | 1 | -1/+1 |
| | |||||
* | mypy: control.py is checked | Ned Batchelder | 2022-12-31 | 1 | -6/+6 |
| | |||||
* | mypy: check tests/goldtest.py, tests/test_html.py | Ned Batchelder | 2022-12-31 | 1 | -3/+3 |
| | |||||
* | mypy: inorout.py, disposition.py, and part of control.py | Ned Batchelder | 2022-12-30 | 1 | -7/+7 |
| | |||||
* | mypy: mypy checks plugin.py | Ned Batchelder | 2022-12-29 | 1 | -8/+2 |
| | |||||
* | test: run mypy on config.py | Ned Batchelder | 2022-12-27 | 1 | -56/+87 |
| | |||||
* | style: fix spelling | Ned Batchelder | 2022-11-28 | 1 | -2/+2 |
| | | | | un-executed, white space, time stamp. | ||||
* | feat: added support for finding unexecuted namespace packages (#1387) | Felix Horvat | 2022-11-17 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | * add support for namespace packages * fixed typo * update documentation * fixed lint issues * changed versionadded * convert to config setting * removed pure formatting changes * code review changes Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> | ||||
* | feat: complete removal of `[run] note` | Ned Batchelder | 2022-11-11 | 1 | -2/+0 |
| | |||||
* | refactor: use `format` wherever we can | Ned Batchelder | 2022-11-05 | 1 | -2/+2 |
| | |||||
* | feat: report terminal output in Markdown Table format #1418 (#1479) | stepeos | 2022-11-05 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * refactoring normal reporting text output * implemented markdown feature from #1418 * minor changes * fixed text output * fixed precision for text and markdown report format * minor changes * finished testing for markdown format feature * fixed testing outside test_summary.py * removed fixed-length widespace padding for tests * removed whitespaces * refactoring, fixing docs, rewriting cmd args * fixing code quality * implementing requested changes * doc fix * test: add another test of correct report formatting * fixed precision printing test * style: adjust the formatting Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> | ||||
* | refactor: avoid RawConfigParser, and use super() | Ned Batchelder | 2022-11-03 | 1 | -10/+10 |
| | |||||
* | fix: the SIGTERM handler is now opt-in. #1310 | Ned Batchelder | 2022-05-18 | 1 | -0/+2 |
| | |||||
* | style: parens should indent the same as their opening line | Ned Batchelder | 2022-05-01 | 1 | -1/+1 |
| | |||||
* | debug: pybehave is now an option on `coverage debug` | Ned Batchelder | 2022-02-06 | 1 | -1/+7 |
| | |||||
* | fix: small fixes to lcov, and changes.rst mention. | Ned Batchelder | 2022-01-22 | 1 | -1/+4 |
| | |||||
* | feat: add "lcov" command for generating LCOV reports | Bradley Burns | 2022-01-22 | 1 | -0/+3 |
| | | | | | | | * Add LCOV functionality into coverage.py * Add testing for the LCOV reporter * Add documentation for the LCOV reporter | ||||
* | feat: multiple --concurrency values. #1012 #1082nedbat/multi-concurrency | Ned Batchelder | 2021-11-25 | 1 | -0/+2 |
| | |||||
* | refactor: this is nicer as a set | Ned Batchelder | 2021-11-24 | 1 | -2/+2 |
| | |||||
* | refactor: specialize exceptions | Ned Batchelder | 2021-11-14 | 1 | -9/+9 |
| | | | | | | CoverageException is fine as a base class, but not good to use for raising (and catching sometimes). Introduce specialized exceptions that allow third-party tools to integrate better. | ||||
* | feat: unrecognized options are now a warning rather than error. #1035 (#1206) | Ned Batchelder | 2021-08-05 | 1 | -4/+5 |
| | | | | Because they are warnings issued while parsing the configuration file, it's not possible to suppress them with the coverage configuration. | ||||
* | fix: raise chained errors with "from" #998 | Ned Batchelder | 2021-07-20 | 1 | -3/+3 |
| | | | | | | This makes exceptions report their causes correctly, as "The above exception was the direct cause of the following exception" instead of "During handling of the above exception, another exception occurred." | ||||
* | refactor: convert more %-formatting to f-strings | Ned Batchelder | 2021-05-02 | 1 | -3/+3 |
| | |||||
* | refactor: move exceptions to their own module | Ned Batchelder | 2021-05-02 | 1 | -2/+2 |
| | |||||
* | build: update to latest pylintgood-meta | Ned Batchelder | 2021-05-02 | 1 | -1/+0 |
| | |||||
* | refactor: remove a few more version checks | Ned Batchelder | 2021-05-02 | 1 | -4/+1 |
| | |||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -5/+5 |
| | |||||
* | refactor: remove more unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -3/+2 |
| | | | | | | | | | | | | | | Gone are: - iitems - litems - iternext - to_bytes - to_string - binary_bytes - byte_to_int - bytes_to_ints - BUILTINS | ||||
* | refactor: remove unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | Removed were: - StringIO - configparser - string_class - unicode_class - range - zip_longest - get_thread_id - path_types - shlex_quote - reprlib | ||||
* | style: correct two recent lint faux pas | Ned Batchelder | 2021-03-18 | 1 | -1/+1 |
| | |||||
* | refactor: remove unused encoding parameter | Ned Batchelder | 2021-03-14 | 1 | -2/+2 |
| | |||||
* | test: add a test of missing sections and options | Ned Batchelder | 2021-02-25 | 1 | -2/+2 |
| | |||||
* | refactor: Move post-processing into CoverageConfig | Ned Batchelder | 2021-01-27 | 1 | -7/+15 |
| | |||||
* | skip_covered and skip_empty for HTML. #1090 | Ned Batchelder | 2021-01-10 | 1 | -0/+4 |
| | |||||
* | Create Way to force package even if filepath exists (#1026) | Thomas Grainger | 2020-09-12 | 1 | -0/+2 |
| | | | Fixes: #268 | ||||
* | Report descending sort option (#1005) | Jerin Peter George | 2020-07-03 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | * added descending sort option in coverage report * commandline option for report sort added * Fix tests for pull #1005 * conditional statements improved * sort option help updated with choices * commandline test for sort added Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> | ||||
* | Read the config file contents as bytes, it's just for debugging anyway. #990 | Ned Batchelder | 2020-05-23 | 1 | -1/+1 |
| | |||||
* | Update pylint | Ned Batchelder | 2020-05-19 | 1 | -1/+1 |
| | |||||
* | Finish up #967. Thanks, Bernát Gábor | Ned Batchelder | 2020-04-11 | 1 | -0/+2 |
| | |||||
* | Allow plugins to alter the paths config | Bernat Gabor | 2020-04-03 | 1 | -0/+6 |
| | | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> |