Skip to content

Commit

Permalink
Preparing release version 5.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pytestbot committed Jun 2, 2020
1 parent 2d795dc commit b322004
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 11 deletions.
2 changes: 0 additions & 2 deletions changelog/6428.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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


release-5.4.3
release-5.4.2
release-5.4.1
release-5.4.0
Expand Down
21 changes: 21 additions & 0 deletions doc/en/announce/release-5.4.3.rst
@@ -0,0 +1,21 @@
pytest-5.4.3
=======================================

pytest 5.4.3 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/latest/changelog.html.

Thanks to all who contributed to this release, among them:

* Anthony Sottile
* Bruno Oliveira
* Ran Benita
* Tor Colvin


Happy testing,
The pytest Development Team
23 changes: 23 additions & 0 deletions doc/en/changelog.rst
Expand Up @@ -28,6 +28,29 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start
pytest 5.4.3 (2020-06-02)
=========================

Bug Fixes
---------

- `#6428 <https://github.com/pytest-dev/pytest/issues/6428>`_: Paths appearing in error messages are now correct in case the current working directory has
changed since the start of the session.


- `#6755 <https://github.com/pytest-dev/pytest/issues/6755>`_: Support deleting paths longer than 260 characters on windows created inside tmpdir.


- `#6956 <https://github.com/pytest-dev/pytest/issues/6956>`_: Prevent pytest from printing ConftestImportFailure traceback to stdout.


- `#7150 <https://github.com/pytest-dev/pytest/issues/7150>`_: Prevent hiding the underlying exception when ``ConfTestImportFailure`` is raised.


- `#7215 <https://github.com/pytest-dev/pytest/issues/7215>`_: Fix regression where running with ``--pdb`` would call the ``tearDown`` methods of ``unittest.TestCase``
subclasses for skipped tests.


pytest 5.4.2 (2020-05-08)
=========================

Expand Down
7 changes: 3 additions & 4 deletions doc/en/example/parametrize.rst
Expand Up @@ -481,11 +481,10 @@ Running it results in some skips if we don't have all the python interpreters in
.. code-block:: pytest
. $ pytest -rs -q multipython.py
ssssssssssss...ssssssssssss [100%]
ssssssssssss......sss...... [100%]
========================= short test summary info ==========================
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.7' not found
3 passed, 24 skipped in 0.12s
SKIPPED [15] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
12 passed, 15 skipped in 0.12s
Indirect parametrization of optional implementations/imports
--------------------------------------------------------------------
Expand Down

0 comments on commit b322004

Please sign in to comment.