Accepting request 1303295 from home:mcalabkova:branches:devel:languages:python

- Update to 7.10.6
  * A new configuration option: ":ref:`config_run_patch`" specifies
    named patches to work around some limitations in coverage
    measurement. Please see docs for more info.
  * The HTML report now dimly colors subsequent lines in multi-line
    statements.
  * Two new exclusion patterns are part of the defaults: ... is
    automatically excluded as a line and if TYPE_CHECKING: is
    excluded as a branch.
  * A new command-line option: --save-signal=USR1 specifies a signal
    that coverage.py will listen for. When the signal is sent, the
    coverage data will be saved.
  * Big speed improvements for coverage combine: it's now about twice
    as fast!
  * fix: source directories were not properly communicated to
    subprocesses that ran in different directories.

OBS-URL: https://build.opensuse.org/request/show/1303295
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coverage?expand=0&rev=148
This commit is contained in:
2025-09-09 07:18:26 +00:00
committed by Git OBS Bridge
parent 2b24858b9f
commit a9e5e2a5ae
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Tue Sep 9 05:58:32 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Update to 7.10.6
* A new configuration option: ":ref:`config_run_patch`" specifies
named patches to work around some limitations in coverage
measurement. Please see docs for more info.
* The HTML report now dimly colors subsequent lines in multi-line
statements.
* Two new exclusion patterns are part of the defaults: ... is
automatically excluded as a line and if TYPE_CHECKING: is
excluded as a branch.
* A new command-line option: --save-signal=USR1 specifies a signal
that coverage.py will listen for. When the signal is sent, the
coverage data will be saved.
* Big speed improvements for coverage combine: it's now about twice
as fast!
* fix: source directories were not properly communicated to
subprocesses that ran in different directories.
-------------------------------------------------------------------
Tue Aug 19 10:42:47 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>