Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat: `coverage combine` now prints messages naming the files being ↵ | Ned Batchelder | 2021-08-05 | 1 | -0/+1 |
| | | | | combined. #1105 (#1208) | ||||
* | feat: HTML report now says where the report is. #1195 (#1207) | Ned Batchelder | 2021-08-05 | 1 | -1/+15 |
| | |||||
* | feat: unrecognized options are now a warning rather than error. #1035 (#1206) | Ned Batchelder | 2021-08-05 | 1 | -14/+18 |
| | | | | Because they are warnings issued while parsing the configuration file, it's not possible to suppress them with the coverage configuration. | ||||
* | refactor: convert %-strings to f-strings | Ned Batchelder | 2021-07-28 | 1 | -6/+2 |
| | |||||
* | fix: use more explicit names for some debug information | Ned Batchelder | 2021-06-02 | 1 | -2/+2 |
| | |||||
* | refactor: remove globals from Numbers | Ned Batchelder | 2021-06-01 | 1 | -3/+2 |
| | |||||
* | feat: warnings are now real warnings | Ned Batchelder | 2021-05-30 | 1 | -2/+3 |
| | | | | | | This makes coverage warnings visible when running test suites under pytest. But it also means some uninteresting warnings would show up in our own test suite, so we had to catch or suppress those. | ||||
* | feat: include some usual env vars in debug-sys | Ned Batchelder | 2021-05-23 | 1 | -1/+4 |
| | |||||
* | refactor: convert more %-formatting to f-strings | Ned Batchelder | 2021-05-02 | 1 | -2/+2 |
| | |||||
* | refactor: move exceptions to their own module | Ned Batchelder | 2021-05-02 | 1 | -1/+2 |
| | |||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -10/+10 |
| | |||||
* | refactor: remove more unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -2/+1 |
| | | | | | | | | | | | | | | 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 | -3/+3 |
| | | | | | | | | | | | | | | | Removed were: - StringIO - configparser - string_class - unicode_class - range - zip_longest - get_thread_id - path_types - shlex_quote - reprlib | ||||
* | style: nicer long function call | Ned Batchelder | 2021-01-30 | 1 | -2/+7 |
| | |||||
* | doc: touch-ups for `combine --keep` | Ned Batchelder | 2021-01-30 | 1 | -1/+3 |
| | |||||
* | Add combine --keep (#1110) | Éric Larivière | 2021-01-30 | 1 | -2/+5 |
| | | | | | | | | | | | * Add combine --keep Related to https://github.com/nedbat/coveragepy/issues/1108 * Fix unit tests * Fix line too long * Fix line too long | ||||
* | skip_covered and skip_empty for HTML. #1090 | Ned Batchelder | 2021-01-10 | 1 | -2/+2 |
| | |||||
* | Fix --source performance regression. #1037 | Ned Batchelder | 2020-10-11 | 1 | -1/+5 |
| | |||||
* | If a plugin is disabled, don't try to record its file tracers. #1011 | Ned Batchelder | 2020-09-13 | 1 | -0/+4 |
| | |||||
* | Docs and cleanup for source_pkgs | Ned Batchelder | 2020-09-12 | 1 | -1/+8 |
| | |||||
* | Create Way to force package even if filepath exists (#1026) | Thomas Grainger | 2020-09-12 | 1 | -2/+2 |
| | | | Fixes: #268 | ||||
* | More bitbucket->github urls | Ned Batchelder | 2020-08-18 | 1 | -2/+1 |
| | |||||
* | Report descending sort option (#1005) | Jerin Peter George | 2020-07-03 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | * 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> | ||||
* | --skip-empty now applies to the XML report also. #976nedbat/bug976 | Ned Batchelder | 2020-06-30 | 1 | -2/+2 |
| | |||||
* | More details on --source filtering | Ned Batchelder | 2020-06-29 | 1 | -2/+4 |
| | |||||
* | Finish up --precision | Ned Batchelder | 2020-05-12 | 1 | -5/+13 |
| | |||||
* | Add --precision switch to report command | Teake Nutma | 2020-04-30 | 1 | -2/+2 |
| | |||||
* | Finish up #967. Thanks, Bernát Gábor | Ned Batchelder | 2020-04-11 | 1 | -1/+8 |
| | |||||
* | Include PID in the atexit log | Bruno P. Kinoshita | 2020-01-28 | 1 | -1/+1 |
| | |||||
* | Ensure file touching happens if nothing was measured. #884 | Ned Batchelder | 2020-01-04 | 1 | -1/+1 |
| | |||||
* | Write debug info after initting for start. | Ned Batchelder | 2019-12-29 | 1 | -4/+7 |
| | | | | | | | A few important and confusing things are only created in _init_for_start, and without resetting the write-debug-info flag, we never see them in the debug output. This makes the info appear more than once, but at least we get what we need. | ||||
* | Fix --debug=sys. #907 | Ned Batchelder | 2019-12-28 | 1 | -1/+1 |
| | |||||
* | Warn if two things change the dynamic context. #901 | Ned Batchelder | 2019-12-27 | 1 | -0/+4 |
| | |||||
* | Warnings can be marked to only display once. | Ned Batchelder | 2019-12-27 | 1 | -2/+13 |
| | |||||
* | A way to artificially crash coverage, for testing. | Ned Batchelder | 2019-12-23 | 1 | -1/+6 |
| | |||||
* | Tweak some coverage details of switch_context code | Ned Batchelder | 2019-12-22 | 1 | -2/+2 |
| | |||||
* | run --append --concurrency=multiprocessing didn't use a suffix for the main ↵ | Ned Batchelder | 2019-12-17 | 1 | -4/+6 |
| | | | | process. #880 | ||||
* | Be clear about the documented parts of the API. | Ned Batchelder | 2019-12-16 | 1 | -0/+4 |
| | |||||
* | Fix two misspellings | Ned Batchelder | 2019-12-08 | 1 | -1/+1 |
| | |||||
* | Coverage(data_file=None) means no data file at all. #871 | Ned Batchelder | 2019-12-02 | 1 | -6/+21 |
| | |||||
* | Experimental: relative_files to support relative file names. | Ned Batchelder | 2019-12-01 | 1 | -5/+9 |
| | |||||
* | Clean-ups I noticed while doing something else | Ned Batchelder | 2019-11-17 | 1 | -8/+8 |
| | |||||
* | Tweaks to Coverage docstrings | Ned Batchelder | 2019-11-10 | 1 | -10/+10 |
| | |||||
* | '[run] note' is no longer supported. | Ned Batchelder | 2019-11-09 | 1 | -1/+1 |
| | |||||
* | Optionally skip empty files in reports | reybog90 | 2019-11-01 | 1 | -3/+8 |
| | |||||
* | Sqlite3 info in 'coverage debug sys' | Ned Batchelder | 2019-10-08 | 1 | -0/+2 |
| | |||||
* | Context-switching plugins should be listed in debug output | Ned Batchelder | 2019-10-06 | 1 | -0/+1 |
| | |||||
* | Add some needed details to the Coverage docstrings | Ned Batchelder | 2019-10-06 | 1 | -6/+21 |
| | |||||
* | Correct some function names and docstrings. #843 | Ned Batchelder | 2019-09-09 | 1 | -2/+3 |
| | |||||
* | Reporting methods shouldn't permanently change the configuration | Ned Batchelder | 2019-09-01 | 1 | -18/+35 |
| |