Update dependency pytest-cov to v4 #27

Open
renovate-bot wants to merge 1 commits from renovate/pytest-cov-4.x into master
Collaborator

This PR contains the following updates:

Package Type Update Change
pytest-cov (changelog) dev-dependencies major ^2.11.1 -> ^4.0.0

Release Notes

pytest-dev/pytest-cov (pytest-cov)

v4.1.0

Compare Source

  • Updated CI with new Pythons and dependencies.
  • Removed rsyncdir support. This makes pytest-cov compatible with xdist 3.0.
    Contributed by Sorin Sbarnea in #&#8203;558 <https://github.com/pytest-dev/pytest-cov/pull/558>_.
  • Optimized summary generation to not be performed if no reporting is active (for example,
    when --cov-report='' is used without --cov-fail-under).
    Contributed by Jonathan Stewmon in #&#8203;589 <https://github.com/pytest-dev/pytest-cov/pull/589>_.
  • Added support for JSON reporting.
    Contributed by Matthew Gamble in #&#8203;582 <https://github.com/pytest-dev/pytest-cov/pull/582>_.
  • Refactored code to use f-strings.
    Contributed by Mark Mayo in #&#8203;572 <https://github.com/pytest-dev/pytest-cov/pull/572>_.
  • Fixed a skip in the test suite for some old xdist.
    Contributed by a bunch of people in #&#8203;565 <https://github.com/pytest-dev/pytest-cov/pull/565>_.

v4.0.0

Compare Source

Note that this release drops support for multiprocessing.

  • --cov-fail-under no longer causes pytest --collect-only to fail
    Contributed by Zac Hatfield-Dodds in #&#8203;511 <https://github.com/pytest-dev/pytest-cov/pull/511>_.

  • Dropped support for multiprocessing (mostly because issue 82408 <https://github.com/python/cpython/issues/82408>_). This feature was
    mostly working but very broken in certain scenarios and made the test suite very flaky and slow.

    There is builtin multiprocessing support in coverage and you can migrate to that. All you need is this in your
    .coveragerc::

    run]
    concurrency = multiprocessing
    parallel = true
    sigterm = true
    
  • Fixed deprecation in setup.py by trying to import setuptools before distutils.
    Contributed by Ben Greiner in #&#8203;545 <https://github.com/pytest-dev/pytest-cov/pull/545>_.

  • Removed undesirable new lines that were displayed while reporting was disabled.
    Contributed by Delgan in #&#8203;540 <https://github.com/pytest-dev/pytest-cov/pull/540>_.

  • Documentation fixes.
    Contributed by Andre Brisco in #&#8203;543 <https://github.com/pytest-dev/pytest-cov/pull/543>_
    and Colin O'Dell in #&#8203;525 <https://github.com/pytest-dev/pytest-cov/pull/525>_.

  • Added support for LCOV output format via --cov-report=lcov. Only works with coverage 6.3+.
    Contributed by Christian Fetzer in #&#8203;536 <https://github.com/pytest-dev/pytest-cov/pull/536>_.

  • Modernized pytest hook implementation.
    Contributed by Bruno Oliveira in #&#8203;549 <https://github.com/pytest-dev/pytest-cov/pull/549>_
    and Ronny Pfannschmidt in #&#8203;550 <https://github.com/pytest-dev/pytest-cov/pull/550>_.

v3.0.0

Compare Source

Note that this release drops support for Python 2.7 and Python 3.5.

  • Added support for Python 3.10 and updated various test dependencies.
    Contributed by Hugo van Kemenade in
    #&#8203;500 <https://github.com/pytest-dev/pytest-cov/pull/500>_.
  • Switched from Travis CI to GitHub Actions. Contributed by Hugo van Kemenade in
    #&#8203;494 <https://github.com/pytest-dev/pytest-cov/pull/494>_ and
    #&#8203;495 <https://github.com/pytest-dev/pytest-cov/pull/495>_.
  • Add a --cov-reset CLI option.
    Contributed by Danilo Šegan in
    #&#8203;459 <https://github.com/pytest-dev/pytest-cov/pull/459>_.
  • Improved validation of --cov-fail-under CLI option.
    Contributed by ... Ronny Pfannschmidt's desire for skark in
    #&#8203;480 <https://github.com/pytest-dev/pytest-cov/pull/480>_.
  • Dropped Python 2.7 support.
    Contributed by Thomas Grainger in
    #&#8203;488 <https://github.com/pytest-dev/pytest-cov/pull/488>_.
  • Updated trove classifiers. Contributed by Michał Bielawski in
    #&#8203;481 <https://github.com/pytest-dev/pytest-cov/pull/481>_.
  • Reverted change for toml requirement.
    Contributed by Thomas Grainger in
    #&#8203;477 <https://github.com/pytest-dev/pytest-cov/pull/477>_.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [pytest-cov](https://github.com/pytest-dev/pytest-cov) ([changelog](https://pytest-cov.readthedocs.io/en/latest/changelog.html)) | dev-dependencies | major | `^2.11.1` -> `^4.0.0` | --- ### Release Notes <details> <summary>pytest-dev/pytest-cov (pytest-cov)</summary> ### [`v4.1.0`](https://github.com/pytest-dev/pytest-cov/blob/HEAD/CHANGELOG.rst#410-2023-05-24) [Compare Source](https://github.com/pytest-dev/pytest-cov/compare/v4.0.0...v4.1.0) - Updated CI with new Pythons and dependencies. - Removed rsyncdir support. This makes pytest-cov compatible with xdist 3.0. Contributed by Sorin Sbarnea in `#&#8203;558 <https://github.com/pytest-dev/pytest-cov/pull/558>`\_. - Optimized summary generation to not be performed if no reporting is active (for example, when `--cov-report=''` is used without `--cov-fail-under`). Contributed by Jonathan Stewmon in `#&#8203;589 <https://github.com/pytest-dev/pytest-cov/pull/589>`\_. - Added support for JSON reporting. Contributed by Matthew Gamble in `#&#8203;582 <https://github.com/pytest-dev/pytest-cov/pull/582>`\_. - Refactored code to use f-strings. Contributed by Mark Mayo in `#&#8203;572 <https://github.com/pytest-dev/pytest-cov/pull/572>`\_. - Fixed a skip in the test suite for some old xdist. Contributed by a bunch of people in `#&#8203;565 <https://github.com/pytest-dev/pytest-cov/pull/565>`\_. ### [`v4.0.0`](https://github.com/pytest-dev/pytest-cov/blob/HEAD/CHANGELOG.rst#400-2022-09-28) [Compare Source](https://github.com/pytest-dev/pytest-cov/compare/v3.0.0...v4.0.0) **Note that this release drops support for multiprocessing.** - `--cov-fail-under` no longer causes `pytest --collect-only` to fail Contributed by Zac Hatfield-Dodds in `#&#8203;511 <https://github.com/pytest-dev/pytest-cov/pull/511>`\_. - Dropped support for multiprocessing (mostly because `issue 82408 <https://github.com/python/cpython/issues/82408>`\_). This feature was mostly working but very broken in certain scenarios and made the test suite very flaky and slow. There is builtin multiprocessing support in coverage and you can migrate to that. All you need is this in your `.coveragerc`:: \[run] concurrency = multiprocessing parallel = true sigterm = true - Fixed deprecation in `setup.py` by trying to import setuptools before distutils. Contributed by Ben Greiner in `#&#8203;545 <https://github.com/pytest-dev/pytest-cov/pull/545>`\_. - Removed undesirable new lines that were displayed while reporting was disabled. Contributed by Delgan in `#&#8203;540 <https://github.com/pytest-dev/pytest-cov/pull/540>`\_. - Documentation fixes. Contributed by Andre Brisco in `#&#8203;543 <https://github.com/pytest-dev/pytest-cov/pull/543>`\_ and Colin O'Dell in `#&#8203;525 <https://github.com/pytest-dev/pytest-cov/pull/525>`\_. - Added support for LCOV output format via `--cov-report=lcov`. Only works with coverage 6.3+. Contributed by Christian Fetzer in `#&#8203;536 <https://github.com/pytest-dev/pytest-cov/pull/536>`\_. - Modernized pytest hook implementation. Contributed by Bruno Oliveira in `#&#8203;549 <https://github.com/pytest-dev/pytest-cov/pull/549>`\_ and Ronny Pfannschmidt in `#&#8203;550 <https://github.com/pytest-dev/pytest-cov/pull/550>`\_. ### [`v3.0.0`](https://github.com/pytest-dev/pytest-cov/blob/HEAD/CHANGELOG.rst#300-2021-10-04) [Compare Source](https://github.com/pytest-dev/pytest-cov/compare/v2.12.1...v3.0.0) **Note that this release drops support for Python 2.7 and Python 3.5.** - Added support for Python 3.10 and updated various test dependencies. Contributed by Hugo van Kemenade in `#&#8203;500 <https://github.com/pytest-dev/pytest-cov/pull/500>`\_. - Switched from Travis CI to GitHub Actions. Contributed by Hugo van Kemenade in `#&#8203;494 <https://github.com/pytest-dev/pytest-cov/pull/494>`\_ and `#&#8203;495 <https://github.com/pytest-dev/pytest-cov/pull/495>`\_. - Add a `--cov-reset` CLI option. Contributed by Danilo Šegan in `#&#8203;459 <https://github.com/pytest-dev/pytest-cov/pull/459>`\_. - Improved validation of `--cov-fail-under` CLI option. Contributed by ... Ronny Pfannschmidt's desire for skark in `#&#8203;480 <https://github.com/pytest-dev/pytest-cov/pull/480>`\_. - Dropped Python 2.7 support. Contributed by Thomas Grainger in `#&#8203;488 <https://github.com/pytest-dev/pytest-cov/pull/488>`\_. - Updated trove classifiers. Contributed by Michał Bielawski in `#&#8203;481 <https://github.com/pytest-dev/pytest-cov/pull/481>`\_. - Reverted change for `toml` requirement. Contributed by Thomas Grainger in `#&#8203;477 <https://github.com/pytest-dev/pytest-cov/pull/477>`\_. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC45LjEiLCJ1cGRhdGVkSW5WZXIiOiIzNy4yNTIuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
Author
Collaborator

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
tool python v3.11.2 is already installed
linking tool python v3.11.2

rm: cannot remove '/opt/buildpack/env.d/python.sh': Permission denied

### ⚠ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: poetry.lock ``` tool python v3.11.2 is already installed linking tool python v3.11.2 rm: cannot remove '/opt/buildpack/env.d/python.sh': Permission denied ```
renovate-bot force-pushed renovate/pytest-cov-4.x from 04de1aea66 to 3bd7fc1d96 2022-11-23 22:08:47 +00:00 Compare
renovate-bot force-pushed renovate/pytest-cov-4.x from 3bd7fc1d96 to c2eb740863 2022-12-20 23:08:39 +00:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/pr Build is failing
This pull request can be merged automatically.
You are not authorized to merge this pull request.
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: walbeck-it/determine-docker-tags#27
No description provided.