Skip to content

chore(deps): update dependency coverage to v7.13.4#930

Merged
pickypg merged 2 commits intomainfrom
renovate/coverage-7.x-lockfile
Feb 17, 2026
Merged

chore(deps): update dependency coverage to v7.13.4#930
pickypg merged 2 commits intomainfrom
renovate/coverage-7.x-lockfile

Conversation

@elastic-renovate-prod
Copy link
Copy Markdown
Contributor

@elastic-renovate-prod elastic-renovate-prod Bot commented Nov 8, 2025

This PR contains the following updates:

Package Type Update Change
coverage dev minor 7.10.7 -> 7.13.4

Release Notes

coveragepy/coveragepy (coverage)

v7.13.4

Compare Source

  • Fix: the third-party code fix in 7.13.3 required examining the parent
    directories where coverage was run. In the unusual situation that one of the
    parent directories is unreadable, a PermissionError would occur, as
    described in issue 2129_. This is now fixed.

  • Fix: in test suites that change sys.path, coverage.py could fail with
    "RuntimeError: Set changed size during iteration" as described and fixed in
    pull 2130_. Thanks, Noah Fatsi.

  • We now publish ppc64le wheels, thanks to Pankhudi Jain <pull 2121_>_.

.. _pull 2121:https://github.com/coveragepy/coveragepy/pull/21211
.. _issue 2129https://github.com/coveragepy/coveragepy/issues/212929
.. _pull 213https://github.com/coveragepy/coveragepy/pull/2130130

.. _changes_7-13-3:

v7.13.3

Compare Source

  • Fix: in some situations, third-party code was measured when it shouldn't have
    been, slowing down test execution. This happened with layered virtual
    environments such as uv sometimes makes. The problem is fixed, closing issue 2082_. Now any directory on sys.path that is inside a virtualenv is
    considered third-party code.

.. _issue 2082:https://github.com/coveragepy/coveragepy/issues/20822

.. _changes_7-13-2:

v7.13.2

Compare Source

  • Fix: when Python is installed via symlinks, for example with Homebrew, the
    standard library files could be incorrectly included in coverage reports.
    This is now fixed, closing issue 2115_.

  • Fix: if a data file is created with no read permissions, the combine step
    would fail completely. Now a warning is issued and the file is skipped.
    Closes issue 2117_.

.. _issue 2115:https://github.com/coveragepy/coveragepy/issues/21155
.. _issue 2117https://github.com/coveragepy/coveragepy/issues/211717

.. _changes_7-13-1:

v7.13.1

Compare Source

  • Added: the JSON report now includes a "start_line" key for function and
    class regions, indicating the first line of the region in the source. Closes
    issue 2110_.

  • Added: The debug data command now takes file names as arguments on the
    command line, so you can inspect specific data files without needing to set
    the COVERAGE_FILE environment variable.

  • Fix: the JSON report used to report module docstrings as executed lines,
    which no other report did, as described in issue 2105_. This is now fixed,
    thanks to Jianrong Zhao.

  • Fix: coverage.py uses a more disciplined approach to detecting where
    third-party code is installed, and avoids measuring it. This shouldn't change
    any behavior. If you find that it does, please get in touch.

  • Performance: data files that will be combined now record their hash as part
    of the file name. This lets us skip duplicate data more quickly, speeding the
    combining step.

  • Docs: added a section explaining more about what is considered a missing
    branch and how it is reported: :ref:branch_explain, as requested in issue 1597. Thanks to Ayisha Mohammed <pull 2092_>.

  • Tests: the test suite misunderstood what core was being tested if
    COVERAGE_CORE wasn't set on 3.14+. This is now fixed, closing issue 2109_.

.. _issue 1597:https://github.com/coveragepy/coveragepy/issues/15977
.. _pull 2092https://github.com/coveragepy/coveragepy/pull/209292
.. _issue 210https://github.com/coveragepy/coveragepy/issues/2105105
.. _issue 21https://github.com/coveragepy/coveragepy/issues/21092109
.. _issue 2https://github.com/coveragepy/coveragepy/issues/2110/2110

.. _changes_7-13-0:

v7.13.0

Compare Source

  • Feature: coverage.py now supports :file:.coveragerc.toml configuration
    files. These files use TOML syntax and take priority over
    :file:pyproject.toml but lower priority than :file:.coveragerc files.
    Closes issue 1643_ thanks to Olena Yefymenko <pull 1952_>_.

  • Fix: we now include a permanent .pth file which is installed with the code,
    fixing issue 2084. In 7.12.1b1 this was done incorrectly: it didn't work
    when using the source wheel (py3-none-any). This is now fixed. Thanks,
    Henry Schreiner <pull 2100_>
    .

  • Deprecated: when coverage.py is installed, it creates three command entry
    points: coverage, coverage3, and coverage-3.10 (if installed for
    Python 3.10). The second and third of these are not needed and will
    eventually be removed. They still work for now, but print a message about
    their deprecation.

.. _issue 1643:https://github.com/coveragepy/coveragepy/issues/16433
.. _pull 1952https://github.com/coveragepy/coveragepy/pull/195252
.. _pull 210https://github.com/coveragepy/coveragepy/pull/2100100

.. _changes_7-12-1b1:

v7.12.0

Compare Source

  • The HTML report now shows separate coverage totals for statements and
    branches, as well as the usual combined coverage percentage. Thanks to Ryuta
    Otsuka for the discussion <issue 2081_>_ and the implementation <pull 2085_>_.

  • The JSON report now includes separate coverage totals for statements and
    branches, thanks to Ryuta Otsuka <pull 2090_>_.

  • Fix: except* clauses were not handled properly under the "sysmon"
    measurement core, causing KeyError exceptions as described in issue 2086_.
    This is now fixed.

  • Fix: we now defend against aggressive mocking of open() that could cause
    errors inside coverage.py. An example of a failure is in issue 2083_.

  • Fix: in unusual cases where a test suite intentionally exhausts the system's
    file descriptors to test handling errors in open(), coverage.py would
    fail when trying to open source files, as described in issue 2091_. This
    is now fixed.

  • A small tweak to the HTML report: file paths now use thin spaces around
    slashes to make them easier to read.

.. _issue 2081:https://github.com/coveragepy/coveragepy/issues/20811
.. _issue 2083https://github.com/coveragepy/coveragepy/issues/208383
.. _pull 208https://github.com/coveragepy/coveragepy/pull/2085085
.. _issue 20https://github.com/coveragepy/coveragepy/issues/20862086
.. _pull 2https://github.com/coveragepy/coveragepy/pull/2090/2090
.. _issue https://github.com/coveragepy/coveragepy/issues/2091s/2091

.. _changes_7-11-3:

v7.11.3

Compare Source

  • Fix: the 7.11.1 changes meant that conflicts between a requested measurement
    core and other settings would raise an error. This was a breaking change from
    previous behavior, as reported in issue 2076_ and issue 2078_.

    The previous behavior has been restored: when the requested core conflicts
    with other settings, another core is used instead, and a warning is issued.

  • For contributors: the repo has moved from Ned's nedbat GitHub account_ to
    the coveragepy GitHub organization_. The default branch has changed from
    master to main.

.. _issue 2076:https://github.com/coveragepy/coveragepy/issues/20766
.. _issue 2078https://github.com/coveragepy/coveragepy/issues/207878
.. _nedbat GitHub account: https://github.com/nedbat
.. _coveragepy GitHub organization: https://github.com/coveragepy

.. _changes_7-11-2:

v7.11.2

Compare Source

  • Fix: using the "sysmon" measurement core in 7.11.1, if Python code was
    claimed to come from a non-Python file, a NotPython exception could be
    raised. This could happen for example with Jinja templates compiled to
    Python, as reported in issue 2077_. This is now fixed.

  • Doc: corrected the first entry in the 7.11.1 changelog.

.. _issue 2077:https://github.com/coveragepy/coveragepy/issues/20777

.. _changes_7-11-1:

v7.11.1

Compare Source

  • Fix: some chanages to details of how the measurement core is chosen, and how
    conflicting settings are handled. The "sysmon" core cannot be used with some
    concurrency settings, with dynamic context, and in Python 3.12/3.13, with
    branch measurement.

    • If the core is not specified and defaults to "sysmon" (Python 3.14+), but
      other settings conflict with sysmon, then the "ctrace" core will be used
      instead with no warning. For concurrency conflicts, this used to produce an
      error, as described in issue 2064_.

    • If the "sysmon" core is explicitly requested in your configuration, but
      other settings conflict, an error is now raised. This used to produce a
      warning.

  • Fix: some multi-line case clauses or for loops (and probably other
    constructs) could cause incorrect claims of missing branches with the
    sys.monitoring core, as described in issue 2070_. This is now fixed.

  • Fix: when running in pytest under coverage, a breakpoint() would stop in
    the wrong frame, one level down from where it should, as described in issue 1420_. This was due to a coverage change in v6.4.1 that seemed to give a
    slight performance improvement, but I couldn't reproduce the performance
    gain, so it's been reverted, fixing the debugger problem.

  • A new debug option --debug=core shows which core is in use and why.

  • Split sqlite debugging information out of the sys :ref:coverage debug <cmd_debug> and :ref:cmd_run_debug options since it's bulky and not
    very useful.

  • Updated the :ref:howitworks page to better describe the three different
    measurement cores.

.. _issue 1420:https://github.com/coveragepy/coveragepy/issues/14200
.. _issue 2064https://github.com/coveragepy/coveragepy/issues/206464
.. _issue 207https://github.com/coveragepy/coveragepy/issues/2070070

.. _changes_7-11-0:

v7.11.0

Compare Source

  • Dropped support for Python 3.9, declared support for Python 3.15 alpha.

.. _changes_7-10-7:


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.

@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/coverage-7.x-lockfile branch from 71295c9 to 89b7c11 Compare November 9, 2025 08:24
@elastic-renovate-prod elastic-renovate-prod Bot changed the title chore(deps): update dependency coverage to v7.11.1 chore(deps): update dependency coverage to v7.11.2 Nov 9, 2025
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/coverage-7.x-lockfile branch from 89b7c11 to 195dad4 Compare November 10, 2025 19:14
@elastic-renovate-prod elastic-renovate-prod Bot changed the title chore(deps): update dependency coverage to v7.11.2 chore(deps): update dependency coverage to v7.11.3 Nov 10, 2025
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/coverage-7.x-lockfile branch from 195dad4 to 02c8984 Compare November 18, 2025 14:54
@elastic-renovate-prod elastic-renovate-prod Bot changed the title chore(deps): update dependency coverage to v7.11.3 chore(deps): update dependency coverage to v7.12.0 Nov 18, 2025
@elastic-renovate-prod elastic-renovate-prod Bot force-pushed the renovate/coverage-7.x-lockfile branch from 02c8984 to 0a4b355 Compare February 17, 2026 21:40
@elastic-renovate-prod elastic-renovate-prod Bot changed the title chore(deps): update dependency coverage to v7.12.0 chore(deps): update dependency coverage to v7.13.4 Feb 17, 2026
@pickypg pickypg enabled auto-merge (squash) February 17, 2026 23:52
@pickypg pickypg requested a review from a team as a code owner February 17, 2026 23:52
@pickypg pickypg merged commit 30d0bf3 into main Feb 17, 2026
6 checks passed
@pickypg pickypg deleted the renovate/coverage-7.x-lockfile branch February 17, 2026 23:54
@elastic-renovate-prod
Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant