diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-10 07:39:07 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-11-10 18:45:37 -0500 |
| commit | 9765493020e6292599e272978a25935dd4d0fa88 (patch) | |
| tree | 059c5310f84fe88f87a58ca9db6a11c2e3dca014 /.github/workflows/coverage.yml | |
| parent | dfa97742b62f83b5c892e5de78a3ef1a97ee8a27 (diff) | |
| download | python-coveragepy-git-9765493020e6292599e272978a25935dd4d0fa88.tar.gz | |
fix: CPython 3.11 support. #1241
The fix for CTracer is egregious and will need to be updated when there's a
supported way to do it.
The fullcoverage skip is noted in
https://github.com/nedbat/coveragepy/issues/1278
The raise_through_with skip is noted in
https://github.com/nedbat/coveragepy/issues/1270
Diffstat (limited to '.github/workflows/coverage.yml')
| -rw-r--r-- | .github/workflows/coverage.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cbfd44ec..3e12f01b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -38,6 +38,7 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11.0-alpha.2" - "pypy3" exclude: # Windows PyPy doesn't seem to work? |
