summaryrefslogtreecommitdiff
path: root/coverage/config.py
Commit message (Collapse)AuthorAgeFilesLines
* feat: add extend_exclude optionAlpha Chen2023-02-221-0/+3
|
* feat: the debug output file can be specified in the config file. #1319Ned Batchelder2023-01-221-0/+2
|
* mypy: progress on test_plugins.pyNed Batchelder2023-01-121-2/+3
|
* style: use good style for annotated defaults parametersNed Batchelder2023-01-051-2/+2
|
* mypy: use __future__ uniformly in checked filesNed Batchelder2023-01-051-0/+1
|
* mypy: test_debug.py test_execfile.py test_filereporter.py test_files.pyNed Batchelder2023-01-041-9/+11
|
* mypy: summary.py, test_summary.py, tests/coveragetest.pyNed Batchelder2023-01-041-1/+1
|
* mypy: misc.py, test_misc.pyNed Batchelder2023-01-031-1/+1
|
* mypy: test_config.py, test_context.pyNed Batchelder2023-01-031-1/+1
|
* mypy: add env.pyNed Batchelder2022-12-311-1/+1
|
* mypy: control.py is checkedNed Batchelder2022-12-311-6/+6
|
* mypy: check tests/goldtest.py, tests/test_html.pyNed Batchelder2022-12-311-3/+3
|
* mypy: inorout.py, disposition.py, and part of control.pyNed Batchelder2022-12-301-7/+7
|
* mypy: mypy checks plugin.pyNed Batchelder2022-12-291-8/+2
|
* test: run mypy on config.pyNed Batchelder2022-12-271-56/+87
|
* style: fix spellingNed Batchelder2022-11-281-2/+2
| | | | un-executed, white space, time stamp.
* feat: added support for finding unexecuted namespace packages (#1387)Felix Horvat2022-11-171-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 Batchelder2022-11-111-2/+0
|
* refactor: use `format` wherever we canNed Batchelder2022-11-051-2/+2
|
* feat: report terminal output in Markdown Table format #1418 (#1479)stepeos2022-11-051-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 Batchelder2022-11-031-10/+10
|
* fix: the SIGTERM handler is now opt-in. #1310Ned Batchelder2022-05-181-0/+2
|
* style: parens should indent the same as their opening lineNed Batchelder2022-05-011-1/+1
|
* debug: pybehave is now an option on `coverage debug`Ned Batchelder2022-02-061-1/+7
|
* fix: small fixes to lcov, and changes.rst mention.Ned Batchelder2022-01-221-1/+4
|
* feat: add "lcov" command for generating LCOV reportsBradley Burns2022-01-221-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-concurrencyNed Batchelder2021-11-251-0/+2
|
* refactor: this is nicer as a setNed Batchelder2021-11-241-2/+2
|
* refactor: specialize exceptionsNed Batchelder2021-11-141-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 Batchelder2021-08-051-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" #998Ned Batchelder2021-07-201-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-stringsNed Batchelder2021-05-021-3/+3
|
* refactor: move exceptions to their own moduleNed Batchelder2021-05-021-2/+2
|
* build: update to latest pylintgood-metaNed Batchelder2021-05-021-1/+0
|
* refactor: remove a few more version checksNed Batchelder2021-05-021-4/+1
|
* refactor: pyupgrade --py36-plus coverage/*.pyNed Batchelder2021-05-021-5/+5
|
* refactor: remove more unneeded backward.py shimsNed Batchelder2021-05-011-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 shimsNed Batchelder2021-05-011-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 pasNed Batchelder2021-03-181-1/+1
|
* refactor: remove unused encoding parameterNed Batchelder2021-03-141-2/+2
|
* test: add a test of missing sections and optionsNed Batchelder2021-02-251-2/+2
|
* refactor: Move post-processing into CoverageConfigNed Batchelder2021-01-271-7/+15
|
* skip_covered and skip_empty for HTML. #1090Ned Batchelder2021-01-101-0/+4
|
* Create Way to force package even if filepath exists (#1026)Thomas Grainger2020-09-121-0/+2
| | | Fixes: #268
* Report descending sort option (#1005)Jerin Peter George2020-07-031-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. #990Ned Batchelder2020-05-231-1/+1
|
* Update pylintNed Batchelder2020-05-191-1/+1
|
* Finish up #967. Thanks, Bernát GáborNed Batchelder2020-04-111-0/+2
|
* Allow plugins to alter the paths configBernat Gabor2020-04-031-0/+6
| | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Use abspath to rc file so that chdir doesn't bork us. #890Ned Batchelder2019-12-231-2/+3
|