- update to 7.4.4:

* Fix non-string constants at the top of file being detected as
    docstrings on Python>=3.8.
  * Handle an edge case where :data:`sys.stderr` and
    :data:`sys.__stderr__` might already be closed when
    :ref:`faulthandler` is tearing down.
  * Fixed tracebacks from collection errors not getting pruned.
  * Removed unhelpful error message from assertion rewrite
    mechanism when exceptions are raised in ``__iter__`` methods.
    Now they are treated un-iterable instead.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest?expand=0&rev=132
This commit is contained in:
2024-01-02 08:25:33 +00:00
committed by Git OBS Bridge
parent 17d2b5aa26
commit b217aa53f2
4 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Tue Jan 2 08:23:53 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 7.4.4:
* Fix non-string constants at the top of file being detected as
docstrings on Python>=3.8.
* Handle an edge case where :data:`sys.stderr` and
:data:`sys.__stderr__` might already be closed when
:ref:`faulthandler` is tearing down.
* Fixed tracebacks from collection errors not getting pruned.
* Removed unhelpful error message from assertion rewrite
mechanism when exceptions are raised in ``__iter__`` methods.
Now they are treated un-iterable instead.
-------------------------------------------------------------------
Tue Nov 7 12:01:50 UTC 2023 - Dirk Müller <dmueller@suse.com>