summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* docs: prep for 7.1.0Ned Batchelder2023-01-241-3/+3
|
* feat: the debug output file can be specified in the config file. #1319Ned Batchelder2023-01-222-5/+15
|
* docs: explain how to use ``--debug=trace``Ned Batchelder2023-01-223-3/+20
|
* chore: make upgrade to get eventlet 0.33.3Ned Batchelder2023-01-171-41/+51
|
* docs: remove mentions of the testing-in-python mailing list.Ned Batchelder2023-01-162-9/+11
| | | | The list is defunct, and not a good place to get help.
* chore: make upgradeNed Batchelder2023-01-161-2/+25
|
* build: use scriv to create GitHub releasesNed Batchelder2023-01-162-1/+2
|
* chore: make upgradeNed Batchelder2023-01-161-3/+3
|
* docs: tweak quickstart to make basic step clearerNed Batchelder2023-01-131-4/+10
|
* chore: make upgradeNed Batchelder2023-01-131-21/+107
|
* docs: sample html for 7.0.57.0.5Ned Batchelder2023-01-1011-41/+41
|
* docs: prep for 7.0.5Ned Batchelder2023-01-101-3/+3
|
* docs: sample html report for 7.0.47.0.4Ned Batchelder2023-01-0711-41/+41
|
* docs: prep for 7.0.4Ned Batchelder2023-01-071-3/+3
|
* docs: prep for 7.0.37.0.3Ned Batchelder2023-01-031-3/+3
|
* docs: sample HTML7.0.2Ned Batchelder2023-01-0211-41/+41
|
* docs: prep for 7.0.2Ned Batchelder2023-01-022-5/+5
|
* mypy: control.py is checkedNed Batchelder2022-12-311-0/+1
|
* build: keep docs from failingNed Batchelder2022-12-291-1/+1
|
* mypy: mypy checks plugin.pyNed Batchelder2022-12-291-0/+8
|
* docs: latest sample HTML reportNed Batchelder2022-12-2311-41/+41
|
* docs: prep for 7.0.1Ned Batchelder2022-12-231-3/+3
|
* chore: make upgradeNed Batchelder2022-12-211-4/+5
|
* build: PyPy wheel now installs on 3.7, 3.8, and 3.9. #1510Ned Batchelder2022-12-201-1/+1
|
* docs: latest sample HTML report7.0.0Ned Batchelder2022-12-1811-41/+41
|
* docs: prep for 7.0.0Ned Batchelder2022-12-182-3/+3
|
* chore: make upgradeNed Batchelder2022-12-181-3/+3
|
* chore: make upgradeNed Batchelder2022-12-071-10/+6
|
* docs: prep for 7.0.0b17.0.0b1Ned Batchelder2022-12-031-1/+1
|
* docs: update man page for `report --format`Ned Batchelder2022-12-031-1/+4
|
* test: setting COLUMNS=80 broadly makes pytest too narrowNed Batchelder2022-12-031-0/+6
| | | | | Better to set it precisely where it is needed. This also ensures that running cog from the Makefile will get the right results.
* docs: prep for 7.0.0b1Ned Batchelder2022-12-031-3/+3
|
* chore: make upgradeNed Batchelder2022-12-021-2/+2
|
* feat: file paths are only remapped if the result existsNed Batchelder2022-11-291-1/+3
|
* style: fix spellingNed Batchelder2022-11-285-21/+18
| | | | un-executed, white space, time stamp.
* build: next version will be 7.0Ned Batchelder2022-11-281-1/+1
|
* feat: implicit path mapping during reporting. #1212Ned Batchelder2022-11-271-0/+4
|
* chore: make upgradeNed Batchelder2022-11-261-9/+9
|
* perf: more combine speed-upsNed Batchelder2022-11-202-3/+5
| | | | | | | By avoiding writing metadata that differs but doesn't change the data, we get a higher hitrate on the hash-checking when combining. Use --debug=process to include these details for debugging.
* refactor, docs: clean-up for #1387Ned Batchelder2022-11-171-2/+8
|
* feat: added support for finding unexecuted namespace packages (#1387)Felix Horvat2022-11-171-0/+8
| | | | | | | | | | | | | | | | | | | * 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>
* chore: make upgradeNed Batchelder2022-11-141-3/+3
|
* feat: complete removal of `[run] note`Ned Batchelder2022-11-111-8/+0
|
* perf: hash data files during combining to avoid unneeded work. #1483Ned Batchelder2022-11-081-2/+1
| | | | | | | | | When generating many parallel data files, often some data files will be exact copies of each other. Checking the hashes, we can avoid combining the duplicates, speeding the process. On a coverage.py metacov, we had 651 duplicates out of 2189 files (29%). The time to combine was reduced by 17%.
* feat: --format=total writes just the total numberNed Batchelder2022-11-061-4/+7
|
* docs: changelog and docs for `coverage report --format=markdown`Ned Batchelder2022-11-051-0/+4
|
* feat: report terminal output in Markdown Table format #1418 (#1479)stepeos2022-11-051-1/+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>
* chore: make upgradeNed Batchelder2022-11-051-6/+4
|
* chore: make upgradeNed Batchelder2022-11-051-9/+9
|
* docs: prep for 6.6.0b16.6.0b1Ned Batchelder2022-10-312-4/+4
|