Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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> | ||||
* | Use abspath to rc file so that chdir doesn't bork us. #890 | Ned Batchelder | 2019-12-23 | 1 | -2/+3 |
| | |||||
* | A way to artificially crash coverage, for testing. | Ned Batchelder | 2019-12-23 | 1 | -0/+2 |
| | |||||
* | The [paths] setting is ordered. #649 | Ned Batchelder | 2019-12-01 | 1 | -2/+5 |
| | |||||
* | Experimental: relative_files to support relative file names. | Ned Batchelder | 2019-12-01 | 1 | -1/+3 |
| | |||||
* | Don't do vars and users in abs_file | Ned Batchelder | 2019-11-28 | 1 | -0/+1 |
| | | | | It meant file names could be incorrectly expanded. | ||||
* | Give warnings about not being able to parse TOML files if toml isn't installed | Ned Batchelder | 2019-11-03 | 1 | -3/+0 |
| | |||||
* | A better way to import optional modules | Ned Batchelder | 2019-11-03 | 1 | -2/+3 |
| | |||||
* | TOML support for pyproject.toml and other config files | Frazer McLean | 2019-11-03 | 1 | -3/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed and rebased from https://github.com/nedbat/coveragepy/pull/699 Missing getfloat TOMLConfigParser -> TomlConfigParser fix getfloat for int Move TomlConfigParser Add name to contributors Import toml in backward.py fix indentation Don't ignore TomlDecodeError Raise if TomlConfigParser is used without toml installed Add tests for TOML config Fix test on Python 2 Mention toml support in documentation. | ||||
* | Optionally skip empty files in reports | reybog90 | 2019-11-01 | 1 | -0/+2 |
| | |||||
* | Polish up substitute_variables based on a lightning talk | Ned Batchelder | 2019-09-14 | 1 | -1/+1 |
| | |||||
* | Reporting methods shouldn't permanently change the configuration | Ned Batchelder | 2019-09-01 | 1 | -1/+6 |
| | |||||
* | Create a JSON report | Matt Bachmann | 2019-08-31 | 1 | -0/+10 |
| | |||||
* | Clean up and test filtering contexts for reporting | Ned Batchelder | 2019-07-01 | 1 | -1/+2 |
| | |||||
* | Silence a pylint warning | Ned Batchelder | 2019-07-01 | 1 | -0/+2 |
| | |||||
* | Make show_contexts available to set_option, and document it. | Ned Batchelder | 2019-06-30 | 1 | -1/+2 |
| | |||||
* | Extend HTML report to to show contexts for every covered line. | Stephan Richter | 2019-06-10 | 1 | -0/+1 |
| | |||||
* | Provide a default for query contexts. | Stephan Richter | 2019-06-10 | 1 | -0/+1 |
| | |||||
* | Use pylint 2.x | Ned Batchelder | 2019-05-13 | 1 | -2/+2 |
| | |||||
* | Add a set_env.py line for COVERAGE_DEBUG | Ned Batchelder | 2019-04-15 | 1 | -0/+1 |
| | |||||
* | `[run] command_line` is the command line to use for 'coverage run'. #695 | Ned Batchelder | 2018-10-18 | 1 | -0/+2 |
| | |||||
* | Dynamic contexts | Ned Batchelder | 2018-09-23 | 1 | -0/+2 |
| | |||||
* | Plumb through context= setting | Ned Batchelder | 2018-09-18 | 1 | -0/+2 |
| | |||||
* | Move variable substitution to be independent | Ned Batchelder | 2018-09-08 | 1 | -17/+2 |
| | |||||
* | Show the contents of the config file | Ned Batchelder | 2018-08-30 | 1 | -0/+3 |
| | |||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Make version checking more uniform | Ned Batchelder | 2018-06-13 | 1 | -2/+2 |
| | |||||
* | COVERAGE_RCFILE can specify the config file location. #650 | Ned Batchelder | 2018-04-19 | 1 | -1/+7 |
| |