summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* refactor: don't need _to_blob anymore, leftover from 2 vs 3Ned Batchelder2022-12-271-8/+4
|
* refactor: remove more of contractsNed Batchelder2022-12-273-14/+2
|
* refactor: remove more of the PyContracts stuffNed Batchelder2022-12-273-9/+5
|
* fix: adjust some PyPy behaviors. #1515Ned Batchelder2022-12-271-1/+6
|
* test: remove pycontractsNed Batchelder2022-12-253-55/+9
|
* docs: bump versionNed Batchelder2022-12-231-2/+2
|
* docs: prep for 7.0.1Ned Batchelder2022-12-231-2/+2
|
* fix: also look into .whl files for sourceNed Batchelder2022-12-231-2/+2
|
* fix: more information when mapping rules aren't working right.Ned Batchelder2022-12-231-0/+4
|
* fix: certain strange characters caused reporting to fail. #1512Ned Batchelder2022-12-231-1/+2
| | | | | | It turns out that str.splitlines() will break text on some characters that file.readline() does not! Use readline() to read source files the same way that Python does.
* fix: don't forbid plus signs in file names. #1513Ned Batchelder2022-12-231-1/+1
|
* docs: bump versionNed Batchelder2022-12-181-2/+2
|
* docs: prep for 7.0.0Ned Batchelder2022-12-181-2/+2
|
* chore: bump versionNed Batchelder2022-12-031-2/+2
|
* docs: prep for 7.0.0b1Ned Batchelder2022-12-031-1/+1
|
* fix: when checking source existence for remapping, zipfiles are okNed Batchelder2022-12-012-15/+43
|
* fix: prevent infinite recursionNed Batchelder2022-12-011-3/+8
| | | | | If using relative file paths, and a file remapping failed, we'd get an infinite recursion.
* feat: file paths are only remapped if the result existsNed Batchelder2022-11-291-2/+7
|
* style: fix spellingNed Batchelder2022-11-287-11/+10
| | | | un-executed, white space, time stamp.
* build: next version will be 7.0Ned Batchelder2022-11-282-2/+2
|
* refactor: ensure all sqlite cursors are closedNed Batchelder2022-11-271-93/+131
|
* refactor: SimpleReprMixing wasn't simple, it was autoNed Batchelder2022-11-273-10/+10
| | | | Also, I'm not sure I like it as a mixin...
* feat: implicit path mapping during reporting. #1212Ned Batchelder2022-11-272-11/+32
|
* style: long arg lists should be one per lineNed Batchelder2022-11-261-51/+142
|
* perf: more combine speed-upsNed Batchelder2022-11-201-7/+14
| | | | | | | 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.
* build: allow for .devN version numbersNed Batchelder2022-11-171-7/+11
|
* refactor, docs: clean-up for #1387Ned Batchelder2022-11-172-7/+13
|
* feat: added support for finding unexecuted namespace packages (#1387)Felix Horvat2022-11-174-4/+12
| | | | | | | | | | | | | | | | | | | * 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-112-5/+0
|
* fix: path-mapped results shouldn't start with ./Ned Batchelder2022-11-081-0/+3
| | | | Unless the actual result in the config starts with ./
* test: this loop never finishes, and that's fineNed Batchelder2022-11-081-1/+1
| | | | Because the last pattern in G2RX_TOKENS is ".", so it always matches.
* perf: hash data files during combining to avoid unneeded work. #1483Ned Batchelder2022-11-082-29/+45
| | | | | | | | | 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%.
* refactor: remove mention of Python 2 unicodeNed Batchelder2022-11-061-2/+1
|
* refactor: no need for special handling of compiling unicode sourceNed Batchelder2022-11-063-40/+4
| | | | This was a holdover from Python 2 days.
* fix: only accept known values for --formatNed Batchelder2022-11-061-1/+2
|
* fix: don't write two rules for an empty table.Ned Batchelder2022-11-061-1/+3
|
* fix: an empty file shouldn't fail with --fail-under=99. #1470Ned Batchelder2022-11-061-1/+1
|
* feat: --format=total writes just the total numberNed Batchelder2022-11-063-6/+13
|
* refactor: human sortingNed Batchelder2022-11-063-10/+13
|
* refactor: more clean up of report table codeNed Batchelder2022-11-051-41/+38
|
* refactor: use `format` wherever we canNed Batchelder2022-11-054-11/+11
|
* refactor: clean up of markdown table supportNed Batchelder2022-11-051-26/+27
|
* feat: report terminal output in Markdown Table format #1418 (#1479)stepeos2022-11-054-56/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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: properly measure strange use of wildcard alternatives in match/case. #1421Ned Batchelder2022-11-031-1/+4
|
* build: bump versionNed Batchelder2022-10-311-1/+1
|
* docs: prep for 6.6.0b16.6.0b1Ned Batchelder2022-10-311-1/+1
|
* fix: more relative_files=true fixes. #1280Ned Batchelder2022-10-302-2/+10
|
* fix: use glob matching instead of fnmatch. #1407Ned Batchelder2022-10-303-30/+61
| | | | | | | I didn't understand that fnmatch considers the entire string to be a filename, even if it has slashes in it. This led to incorrect matching. Now we use our own implementation of glob matching to get the correct behavior.
* test: correct some config tests, and fully cover tomlconfig.pyNed Batchelder2022-10-281-7/+4
|