summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* test: exclude one last line in test_api.pyNed Batchelder2021-08-091-1/+1
|
* debug: improved logging in tracer.cNed Batchelder2021-08-091-13/+14
|
* build: never warn about old pip versionsNed Batchelder2021-08-094-0/+12
|
* test: add a test for #1205 bpo-44840Ned Batchelder2021-08-091-1/+27
|
* chore: update tooling versionsNed Batchelder2021-08-095-14/+14
|
* Fix parsing 'command_line' option (#1201)Pavel Tsialnou2021-08-061-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. #1163Ned Batchelder2021-08-064-1/+36
|
* docs: skip_covered and skip_empty were never documentedNed Batchelder2021-08-061-0/+10
|
* test: add a test of the one thing uncovered in results.pyNed Batchelder2021-08-051-0/+8
|
* feat: `coverage combine` now prints messages naming the files being ↵Ned Batchelder2021-08-055-13/+32
| | | | combined. #1105 (#1208)
* feat: HTML report now says where the report is. #1195 (#1207)Ned Batchelder2021-08-057-6/+28
|
* feat: unrecognized options are now a warning rather than error. #1035 (#1206)Ned Batchelder2021-08-054-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 Batchelder2021-08-043-3/+3
|
* docs: add more detail to a confusing changelog entryNed Batchelder2021-08-021-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 Clauss2021-08-0110-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 refactoringsNed Batchelder2021-07-285-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-stringsNed Batchelder2021-07-2810-29/+19
|
* fix: match/case will trace the default case lineNed Batchelder2021-07-272-4/+1
|
* docs: clarify the behavior of exclude_linesNed Batchelder2021-07-252-2/+23
|
* build: better error reporting in download_gha_artifactsNed Batchelder2021-07-241-10/+15
|
* build: generalize download_gha_artifacts so other repos can use itNed Batchelder2021-07-242-2/+3
|
* test: show hash-based pyc fields in show_pycNed Batchelder2021-07-221-2/+4
| | | | https://www.python.org/dev/peps/pep-0552/
* fix: retry immediately on a failure inside executemany. #1010Ned Batchelder2021-07-212-2/+9
|
* fix: raise chained errors with "from" #998Ned Batchelder2021-07-208-33/+31
| | | | | | This makes exceptions report their causes correctly, as "The above exception was the direct cause of the following exception" instead of "During handling of the above exception, another exception occurred."
* test: don't report this function in pytest tracebacksNed Batchelder2021-07-201-0/+1
|
* test: check the plugin warnings differentlyNed Batchelder2021-07-201-1/+2
| | | | | | | | The old way, extra warnings that we don't care about could creep in. For some reason, disabling PyContracts causes "imp" DeprecationWarnings to appear in the list. Rather than assert there's only one warning, assert there's only one from us.
* test: add a test for bpo 44622, #1176Ned Batchelder2021-07-191-0/+24
|
* docs: mention sys.setprofile as code that will not be measured. #1192Ned Batchelder2021-07-191-0/+5
|
* test: add tests of #1175Ned Batchelder2021-07-191-0/+34
| | | | | | Python versions before 3.10 didn't trace trailing "pass" statements correctly. I don't think that will change at this point, so we'll skip this test for those versions.
* build: push --all is too muchNed Batchelder2021-07-181-1/+1
|
* build: bump version6.0b1Ned Batchelder2021-07-182-1/+7
|
* docs: prep for 6.0b1Ned Batchelder2021-07-183-6/+8
|
* docs: fix two links sphinx thinks are brokenNed Batchelder2021-07-182-2/+2
|
* build: update doc pins, and css for sphinx 4Ned Batchelder2021-07-182-3/+17
|
* build: update pinsNed Batchelder2021-07-184-10/+10
|
* build: update pylint and remove some unneeded warning suppressionNed Batchelder2021-07-184-27/+4
|
* Build aarch64 wheels using cibuildwheel (#1165)Janakarajan Natarajan2021-07-181-4/+14
| | | Latest cibuildwheel allows for the building of aarch64 using QEMU.
* test: mark some only-failure code in the recent goldtest changesNed Batchelder2021-07-181-2/+2
|
* test: change how we keep mismatched actual outputNed Batchelder2021-07-158-25/+22
| | | | | | | | | | | | Now when a goldtest has a failure, the actual mismatched output will be written to the tests/actual directory. Along the way, I removed some obsolete settings which were only used by unittest and unittest_mixins, which we no longer use: - COVERAGE_KEEP_TMP - COVERAGE_ENV_ID - $TMPDIR/coverage_test
* fix: generate flat file names differentlyNed Batchelder2021-07-159-25/+48
| | | | | | | | Fixes a few unusual issues with reports: - #580: HTML report generation fails on too long path - #584: File collisions in coverage report html - #1167: Remove leading underscore in coverage html
* fix: it just seems silly to use more than 32 chars for a fingerprintNed Batchelder2021-07-141-1/+1
|
* test: a better way to skip a test for two reasonsNed Batchelder2021-07-131-5/+2
|
* test: skip a test that won't run on 3.6Ned Batchelder2021-07-131-0/+1
|
* fix: use a modern hash when fingerprinting. #1189Ned Batchelder2021-07-133-9/+13
|
* test: the code I use for bpo reportsNed Batchelder2021-07-131-0/+12
|
* test: add a test for bug #1158Ned Batchelder2021-07-131-0/+25
|
* doc: update CHANGES.rstNed Batchelder2021-07-131-0/+7
|
* Support TOML v1.0.0 syntax in `pyproject.toml` (#1186)Thomas Grainger2021-07-135-40/+37
| | | | | | | | | | | | | | | | | * Support TOML v1.0.0 syntax in `pyproject.toml` fixes #1180 Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> * fix toml meta test * use pytest.mark.parametrize to narrow test failure * Update tests/test_config.py Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com>
* test: 3.10.0b4 traces match/case incorrectlyNed Batchelder2021-07-121-1/+5
| | | | See: https://bugs.python.org/issue44600
* build: 3.10 beta 4 is outNed Batchelder2021-07-112-2/+2
|