Skip to content

Commit 892afcb

Browse files
committed
Allow pytest-cov 2.11.x
2.11.1 (2021-01-20) ------------------- * Fixed support for newer setuptools (v42+). Contributed by Michał Górny in `pantsbuild#451 <https://github.com/pytest-dev/pytest-cov/pull/451>`_. 2.11.0 (2021-01-18) ------------------- * Bumped minimum coverage requirement to 5.2.1. This prevents reporting issues. Contributed by Mateus Berardo de Souza Terra in `pantsbuild#433 <https://github.com/pytest-dev/pytest-cov/pull/433>`_. * Improved sample projects (from the `examples <https://github.com/pytest-dev/pytest-cov/tree/master/examples>`_ directory) to support running `tox -e pyXY`. Now the example configures a suffixed coverage data file, and that makes the cleanup environment unnecessary. Contributed by Ganden Schaffner in `pantsbuild#435 <https://github.com/pytest-dev/pytest-cov/pull/435>`_. * Removed the empty `console_scripts` entrypoint that confused some Gentoo build script. I didn't ask why it was so broken cause I didn't want to ruin my day. Contributed by Michał Górny in `pantsbuild#434 <https://github.com/pytest-dev/pytest-cov/pull/434>`_. * Fixed the missing `coverage context <https://coverage.readthedocs.io/en/stable/contexts.html>`_ when using subprocesses. Contributed by Bernát Gábor in `pantsbuild#443 <https://github.com/pytest-dev/pytest-cov/pull/443>`_. * Updated the config section in the docs. Contributed by Pamela McA'Nulty in `pantsbuild#429 <https://github.com/pytest-dev/pytest-cov/pull/429>`_. * Migrated CI to travis-ci.com (from .org). https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst
1 parent 5d6d844 commit 892afcb

File tree

1 file changed

+1
-1
lines changed
  • src/python/pants/backend/python/subsystems

1 file changed

+1
-1
lines changed

src/python/pants/backend/python/subsystems/pytest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def register_options(cls, register):
3434
"--pytest-plugins",
3535
type=list,
3636
advanced=True,
37-
default=["pytest-cov>=2.10.1,<2.11"],
37+
default=["pytest-cov>=2.10.1,<2.12"],
3838
help=(
3939
"Requirement strings for any plugins or additional requirements you'd like to use."
4040
),

0 commit comments

Comments
 (0)