summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci-tests.yml4
-rw-r--r--CHANGES.rst2
-rw-r--r--tox.ini6
3 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index 9b989d69d..993df6109 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -64,10 +64,10 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
- python-version: 3.8
+ python-version: 3.11
architecture: x64
- run: pip install tox
- - run: tox -e py38-cover,coverage
+ - run: tox -e py311-cover,coverage
docs:
runs-on: ubuntu-20.04
name: Build the documentation
diff --git a/CHANGES.rst b/CHANGES.rst
index 0039fe1e9..46f7fbc18 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -9,6 +9,8 @@ Features
- Added HTTP 418 error code via `pyramid.httpexceptions.HTTPImATeapot`.
See https://github.com/Pylons/pyramid/pull/3667
+- Coverage reports in tests based on Python 3.11 instead of Python 3.8.
+
Bug Fixes
---------
diff --git a/tox.ini b/tox.ini
index 6fe61be7a..592388f56 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,7 @@
envlist =
lint,
py37,py38,py39,py310,py311,pypy3,
- py38-cover,coverage,
+ py311-cover,coverage,
docs
isolated_build = true
@@ -16,7 +16,7 @@ extras =
setenv =
COVERAGE_FILE=.coverage.{envname}
-[testenv:py38-cover]
+[testenv:py311-cover]
commands =
python --version
pytest --cov {posargs:}
@@ -64,7 +64,7 @@ deps =
coverage
setenv =
COVERAGE_FILE=.coverage
-depends = py38-cover
+depends = py311-cover
[testenv:format]
skip_install = true