summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* mypy: misc.py, test_misc.pyNed Batchelder2023-01-031-14/+14
|
* refactor: a better way to have maybe-importable third-party modulesNed Batchelder2023-01-034-41/+10
|
* mypy: test_config.py, test_context.pyNed Batchelder2023-01-032-86/+90
|
* mypy: test_concurrency.py, test_python.pyNed Batchelder2023-01-033-57/+73
|
* refactor(test): use tmp_path instead of tmpdirNed Batchelder2023-01-034-16/+20
|
* mypy: test_annotate.py test_arcs.py test_collector.pyNed Batchelder2023-01-023-101/+101
|
* fix: relative_files should keep relative path maps. #1519Ned Batchelder2023-01-021-2/+12
|
* mypy: test_xml.pyNed Batchelder2023-01-011-42/+49
|
* mypy: check collector.py and plugin_support.pyNed Batchelder2023-01-011-1/+1
|
* refactor: a better way to filter `coverage debug pybehave`Ned Batchelder2023-01-011-0/+6
|
* mypy: add cmdline.py and test_cmdline.pyNed Batchelder2022-12-312-74/+106
|
* fix: lcov command didn't report a total, so --fail-under didn't workNed Batchelder2022-12-311-6/+13
|
* test: a sorted_lines helperNed Batchelder2022-12-315-18/+19
|
* mypy: check tests/goldtest.py, tests/test_html.pyNed Batchelder2022-12-312-94/+113
|
* mypy: check tests/helpers.pyNed Batchelder2022-12-311-34/+62
|
* mypy: add data.py and test_api.pyNed Batchelder2022-12-313-140/+161
|
* test: add a test of unknown dynamic-contextNed Batchelder2022-12-311-0/+6
|
* test: greenlet isn't on all versions we test onNed Batchelder2022-12-311-1/+5
|
* refactor: removed mentions of Jython and IronPythonNed Batchelder2022-12-3010-87/+13
|
* test: seven tests that fail because of pypy 3882Ned Batchelder2022-12-302-3/+20
| | | | https://foss.heptapod.net/pypy/pypy/-/issues/3882
* style: correct some lint errorsNed Batchelder2022-12-301-2/+0
|
* mypy: inorout.py, disposition.py, and part of control.pyNed Batchelder2022-12-302-2/+4
|
* refactor: @contract is completely goneNed Batchelder2022-12-291-1/+1
|
* mypy: check tomlconfig.pyNed Batchelder2022-12-291-0/+1
|
* fix: [tools.coverage] is valid for settings in a toml file. #1516Ned Batchelder2022-12-271-0/+13
|
* test: run mypy on config.pyNed Batchelder2022-12-271-6/+7
|
* refactor: remove more of the PyContracts stuffNed Batchelder2022-12-271-53/+2
|
* fix: adjust some PyPy behaviors. #1515Ned Batchelder2022-12-274-18/+8
|
* test: remove obsolete skipsNed Batchelder2022-12-242-28/+0
|
* fix: also look into .whl files for sourceNed Batchelder2022-12-231-0/+3
|
* fix: certain strange characters caused reporting to fail. #1512Ned Batchelder2022-12-231-0/+32
| | | | | | 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-2/+8
|
* fix: when checking source existence for remapping, zipfiles are okNed Batchelder2022-12-011-1/+30
|
* fix: prevent infinite recursionNed Batchelder2022-12-011-0/+1
| | | | | If using relative file paths, and a file remapping failed, we'd get an infinite recursion.
* test: don't add tests conditionally, skip them insteadNed Batchelder2022-12-011-6/+5
| | | | This keeps the total number of tests the same in all situations.
* feat: file paths are only remapped if the result existsNed Batchelder2022-11-294-13/+26
|
* style: fix spellingNed Batchelder2022-11-284-13/+13
| | | | un-executed, white space, time stamp.
* feat: implicit path mapping during reporting. #1212Ned Batchelder2022-11-272-2/+149
|
* perf: more combine speed-upsNed Batchelder2022-11-201-0/+20
| | | | | | | 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-172-7/+12
|
* feat: added support for finding unexecuted namespace packages (#1387)Felix Horvat2022-11-172-1/+21
| | | | | | | | | | | | | | | | | | | * 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-111-11/+0
|
* fix: path-mapped results shouldn't start with ./Ned Batchelder2022-11-081-0/+7
| | | | Unless the actual result in the config starts with ./
* perf: hash data files during combining to avoid unneeded work. #1483Ned Batchelder2022-11-082-2/+6
| | | | | | | | | 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-062-10/+2
|
* refactor: no need for special handling of compiling unicode sourceNed Batchelder2022-11-062-116/+4
| | | | This was a holdover from Python 2 days.
* fix: only accept known values for --formatNed Batchelder2022-11-062-0/+11
|
* fix: don't write two rules for an empty table.Ned Batchelder2022-11-061-11/+10
|
* fix: an empty file shouldn't fail with --fail-under=99. #1470Ned Batchelder2022-11-061-1/+2
|
* feat: --format=total writes just the total numberNed Batchelder2022-11-061-1/+9
|