Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion changelog/9608.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog/9610.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/9636.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/9642.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/9643.bugfix.rst

This file was deleted.

1 change: 1 addition & 0 deletions doc/en/announce/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2


release-7.0.1
release-7.0.0
release-7.0.0rc1
release-6.2.5
Expand Down
20 changes: 20 additions & 0 deletions doc/en/announce/release-7.0.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
pytest-7.0.1
=======================================

pytest 7.0.1 has just been released to PyPI.

This is a bug-fix release, being a drop-in replacement. To upgrade::

pip install --upgrade pytest

The full changelog is available at https://docs.pytest.org/en/stable/changelog.html.

Thanks to all of the contributors to this release:

* Anthony Sottile
* Bruno Oliveira
* Ran Benita


Happy testing,
The pytest Development Team
24 changes: 24 additions & 0 deletions doc/en/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,30 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start

pytest 7.0.1 (2022-02-11)
=========================

Bug Fixes
---------

- `#9608 <https://github.com/pytest-dev/pytest/issues/9608>`_: Fix invalid importing of ``importlib.readers`` in Python 3.9.


- `#9610 <https://github.com/pytest-dev/pytest/issues/9610>`_: Restore `UnitTestFunction.obj` to return unbound rather than bound method.
Fixes a crash during a failed teardown in unittest TestCases with non-default `__init__`.
Regressed in pytest 7.0.0.


- `#9636 <https://github.com/pytest-dev/pytest/issues/9636>`_: The ``pythonpath`` plugin was renamed to ``python_path``. This avoids a conflict with the ``pytest-pythonpath`` plugin.


- `#9642 <https://github.com/pytest-dev/pytest/issues/9642>`_: Fix running tests by id with ``::`` in the parametrize portion.


- `#9643 <https://github.com/pytest-dev/pytest/issues/9643>`_: Delay issuing a :class:`~pytest.PytestWarning` about diamond inheritance involving :class:`~pytest.Item` and
:class:`~pytest.Collector` so it can be filtered using :ref:`standard warning filters <warnings>`.


pytest 7.0.0 (2022-02-03)
=========================

Expand Down
2 changes: 1 addition & 1 deletion doc/en/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Install ``pytest``
.. code-block:: bash

$ pytest --version
pytest 7.0.0
pytest 7.0.1

.. _`simpletest`:

Expand Down