Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build: prep for 6.0.16.0.1 | Ned Batchelder | 2021-10-06 | 4 | -6/+8 |
| | |||||
* | docs: this document isn't in a toc, and that's ok | Ned Batchelder | 2021-10-06 | 1 | -0/+2 |
| | |||||
* | fix: make exceptions importable from coverage.misc again. #1226 | Ned Batchelder | 2021-10-06 | 2 | -1/+13 |
| | |||||
* | docs: note #1210 in the changelog | Ned Batchelder | 2021-10-06 | 3 | -1/+9 |
| | |||||
* | Fix an incompatibility with pyarmor | glacials | 2021-10-06 | 2 | -1/+7 |
| | |||||
* | fix: pretend we didn't import third-party packages we use. #1228 | Ned Batchelder | 2021-10-06 | 4 | -7/+52 |
| | | | | | | tomli couldn't use coverage themselves because we imported it early. Cleaning sys.modules means their own imports will actually execute after coverage has started, so their files will be properly measured. | ||||
* | build: 3.10.0 is out | Ned Batchelder | 2021-10-05 | 3 | -2/+3 |
| | |||||
* | docs: the 5.0 change summary shouldn't be so prominent anymore | Ned Batchelder | 2021-10-04 | 2 | -4/+4 |
| | |||||
* | build: bump version | Ned Batchelder | 2021-10-02 | 2 | -1/+7 |
| | |||||
* | docs: 6.0 sample HTML report6.0 | Ned Batchelder | 2021-10-02 | 15 | -852/+849 |
| | |||||
* | build: prep for 6.0 release | Ned Batchelder | 2021-10-02 | 5 | -9/+12 |
| | |||||
* | docs: update the link to shining panda | Ned Batchelder | 2021-10-02 | 1 | -1/+1 |
| | |||||
* | test: fix flaky multiprocessing tests | Ned Batchelder | 2021-09-29 | 1 | -1/+1 |
| | | | | | Tests are failing because we expect to see three different pids, but only get two. Is that because the work is being completed too quickly? | ||||
* | chore: update requirements | Ned Batchelder | 2021-09-29 | 5 | -16/+16 |
| | |||||
* | test: update pylint | Ned Batchelder | 2021-09-29 | 3 | -2/+4 |
| | |||||
* | Python 3.10.0rc2 | Ned Batchelder | 2021-09-08 | 3 | -3/+3 |
| | |||||
* | docs: thanks, Clément Pit-Claudel | Ned Batchelder | 2021-09-02 | 2 | -0/+6 |
| | |||||
* | fix: Avoid a race condition in misc.ensure_dir (#1220) | Clément Pit-Claudel | 2021-09-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * coverage/misc.py (ensure_dir): Pass exist_ok to os.makedirs, ensuring that if two concurrent instances of coverage.py entering this function at the same time won't fail with FileExistsError. Sample backtrace: Traceback (most recent call last): File "/usr/lib/python3.8/runpy.py", line 194, in _run_module_as_main return _run_code(code, main_globals, None, File "/usr/lib/python3.8/runpy.py", line 87, in _run_code exec(code, run_globals) File "/home/user/.local/lib/python3.8/site-packages/coverage/__main__.py", line 8, in <module> sys.exit(main()) File "/home/user/.local/lib/python3.8/site-packages/coverage/cmdline.py", line 871, in main status = CoverageScript().command_line(argv) File "/home/user/.local/lib/python3.8/site-packages/coverage/cmdline.py", line 588, in command_line return self.do_run(options, args) File "/home/user/.local/lib/python3.8/site-packages/coverage/cmdline.py", line 743, in do_run self.coverage.start() File "/home/user/.local/lib/python3.8/site-packages/coverage/control.py", line 535, in start self._init_for_start() File "/home/user/.local/lib/python3.8/site-packages/coverage/control.py", line 474, in _init_for_start self._init_data(suffix) File "/home/user/.local/lib/python3.8/site-packages/coverage/control.py", line 512, in _init_data ensure_dir_for_file(self.config.data_file) File "/home/user/.local/lib/python3.8/site-packages/coverage/misc.py", line 165, in ensure_dir_for_file ensure_dir(os.path.dirname(path)) File "/.local/lib/python3.8/site-packages/coverage/misc.py", line 160, in ensure_dir os.makedirs(directory) File "/usr/lib/python3.8/os.py", line 223, in makedirs mkdir(name, mode) | ||||
* | test: another test suggested by Mark Shannon | Ned Batchelder | 2021-08-31 | 1 | -0/+15 |
| | |||||
* | build: don't over-run actions | Ned Batchelder | 2021-08-31 | 2 | -0/+4 |
| | |||||
* | Add link to coverage.py twitter account to project urls (#1217) | Asher Foa | 2021-08-30 | 1 | -0/+1 |
| | |||||
* | build: defend against a local PYTHONPYCACHEPREFIX setting | Ned Batchelder | 2021-08-29 | 1 | -0/+3 |
| | | | | | | | I had PYTYHONPYCACHEPREFIX=/tmp/pyc in my local shell, which put pyc files elsewhere. A few tests care very much about .pyc files, so those tests failed. This setting in tox.ini will ensure that .pyc files are written locally so the tests will pass. | ||||
* | fixes typo in kit workflow (#1215) | Luis Nell | 2021-08-23 | 1 | -1/+1 |
| | |||||
* | refactor: use sets to collect data | Ned Batchelder | 2021-08-15 | 6 | -62/+60 |
| | | | | | | | Coverage.py predates sets as a built-in data structure, so the file data collection has long been dicts with None as the values. Sets are available to us now (since Python 2.4 in 2004, which coverage.py dropped support for in 2014!), we use sets. | ||||
* | fix: missing exceptions through with statements in 3.10 aren't considered ↵ | Ned Batchelder | 2021-08-14 | 3 | -8/+65 |
| | | | | missing branches. #1205 | ||||
* | refactor: move a test helper to CoverageTest | Ned Batchelder | 2021-08-14 | 2 | -6/+10 |
| | |||||
* | test: a part-covered comprehension | Ned Batchelder | 2021-08-09 | 3 | -5/+3 |
| | | | | | The comprehension would only completely finish (->exit) if the assert was going to fail. So we expect it to not finish. | ||||
* | test: simplify pyc logic | Ned Batchelder | 2021-08-09 | 1 | -9/+2 |
| | | | | | | The old pycache_prefix logic was because we would run tests in Docker containers, and they went faster if we set PYTHONCACHEPREFIX. But we don't do that anymore, so we can use simpler code. | ||||
* | test: show contexts in metacov report | Ned Batchelder | 2021-08-09 | 3 | -13/+10 |
| | |||||
* | test: exclude one last line in test_api.py | Ned Batchelder | 2021-08-09 | 1 | -1/+1 |
| | |||||
* | debug: improved logging in tracer.c | Ned Batchelder | 2021-08-09 | 1 | -13/+14 |
| | |||||
* | build: never warn about old pip versions | Ned Batchelder | 2021-08-09 | 4 | -0/+12 |
| | |||||
* | test: add a test for #1205 bpo-44840 | Ned Batchelder | 2021-08-09 | 1 | -1/+27 |
| | |||||
* | chore: update tooling versions | Ned Batchelder | 2021-08-09 | 5 | -14/+14 |
| | |||||
* | Fix parsing 'command_line' option (#1201) | Pavel Tsialnou | 2021-08-06 | 1 | -1/+1 |
| | | | | | Coverage config files supports 'command_line' parameters. However, only '-m' is parsed properly. The line 'command_line = "--module unittest discover"' is considered as a path, not a module option. | ||||
* | feat: mention skipped file counts in the HTML report. #1163 | Ned Batchelder | 2021-08-06 | 4 | -1/+36 |
| | |||||
* | docs: skip_covered and skip_empty were never documented | Ned Batchelder | 2021-08-06 | 1 | -0/+10 |
| | |||||
* | test: add a test of the one thing uncovered in results.py | Ned Batchelder | 2021-08-05 | 1 | -0/+8 |
| | |||||
* | feat: `coverage combine` now prints messages naming the files being ↵ | Ned Batchelder | 2021-08-05 | 5 | -13/+32 |
| | | | | combined. #1105 (#1208) | ||||
* | feat: HTML report now says where the report is. #1195 (#1207) | Ned Batchelder | 2021-08-05 | 7 | -6/+28 |
| | |||||
* | feat: unrecognized options are now a warning rather than error. #1035 (#1206) | Ned Batchelder | 2021-08-05 | 4 | -24/+35 |
| | | | | Because they are warnings issued while parsing the configuration file, it's not possible to suppress them with the coverage configuration. | ||||
* | build: use 3.10.0-rc.1 (#1204) | Ned Batchelder | 2021-08-04 | 3 | -3/+3 |
| | |||||
* | docs: add more detail to a confusing changelog entry | Ned Batchelder | 2021-08-02 | 1 | -1/+5 |
| | | | | | | | safety-db read this entry and reported it as a security issue. It was never a security problem. https://github.com/pyupio/safety-db/issues/2335 | ||||
* | style: fix typos discovered by codespell (#1197) | Christian Clauss | 2021-08-01 | 10 | -16/+16 |
| | | | | | | | | | | | python3 -m pip install codespell codespell --ignore-words-list="ba,cant,datas,hart,linke,ned,nin,overthere,upto" --skip="*.js" * Fix typos discovered by codespell * datas * intgers ==> integers | ||||
* | fix: correct previous refactorings | Ned Batchelder | 2021-07-28 | 5 | -9/+9 |
| | | | | | File names should not be rendered with !r, since on Windows that will produce double backslashes, which only confuses people. | ||||
* | refactor: convert %-strings to f-strings | Ned Batchelder | 2021-07-28 | 10 | -29/+19 |
| | |||||
* | fix: match/case will trace the default case line | Ned Batchelder | 2021-07-27 | 2 | -4/+1 |
| | |||||
* | docs: clarify the behavior of exclude_lines | Ned Batchelder | 2021-07-25 | 2 | -2/+23 |
| | |||||
* | build: better error reporting in download_gha_artifacts | Ned Batchelder | 2021-07-24 | 1 | -10/+15 |
| | |||||
* | build: generalize download_gha_artifacts so other repos can use it | Ned Batchelder | 2021-07-24 | 2 | -2/+3 |
| |