Skip to content

Commit b322004

Browse files
committed
Preparing release version 5.4.3
1 parent 2d795dc commit b322004

File tree

9 files changed

+48
-11
lines changed

9 files changed

+48
-11
lines changed

changelog/6428.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/6755.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/6956.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/7150.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/7215.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

doc/en/announce/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release announcements
66
:maxdepth: 2
77

88

9+
release-5.4.3
910
release-5.4.2
1011
release-5.4.1
1112
release-5.4.0

doc/en/announce/release-5.4.3.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pytest-5.4.3
2+
=======================================
3+
4+
pytest 5.4.3 has just been released to PyPI.
5+
6+
This is a bug-fix release, being a drop-in replacement. To upgrade::
7+
8+
pip install --upgrade pytest
9+
10+
The full changelog is available at https://docs.pytest.org/en/latest/changelog.html.
11+
12+
Thanks to all who contributed to this release, among them:
13+
14+
* Anthony Sottile
15+
* Bruno Oliveira
16+
* Ran Benita
17+
* Tor Colvin
18+
19+
20+
Happy testing,
21+
The pytest Development Team

doc/en/changelog.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,29 @@ with advance notice in the **Deprecations** section of releases.
2828

2929
.. towncrier release notes start
3030
31+
pytest 5.4.3 (2020-06-02)
32+
=========================
33+
34+
Bug Fixes
35+
---------
36+
37+
- `#6428 <https://github.com/pytest-dev/pytest/issues/6428>`_: Paths appearing in error messages are now correct in case the current working directory has
38+
changed since the start of the session.
39+
40+
41+
- `#6755 <https://github.com/pytest-dev/pytest/issues/6755>`_: Support deleting paths longer than 260 characters on windows created inside tmpdir.
42+
43+
44+
- `#6956 <https://github.com/pytest-dev/pytest/issues/6956>`_: Prevent pytest from printing ConftestImportFailure traceback to stdout.
45+
46+
47+
- `#7150 <https://github.com/pytest-dev/pytest/issues/7150>`_: Prevent hiding the underlying exception when ``ConfTestImportFailure`` is raised.
48+
49+
50+
- `#7215 <https://github.com/pytest-dev/pytest/issues/7215>`_: Fix regression where running with ``--pdb`` would call the ``tearDown`` methods of ``unittest.TestCase``
51+
subclasses for skipped tests.
52+
53+
3154
pytest 5.4.2 (2020-05-08)
3255
=========================
3356

doc/en/example/parametrize.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -481,11 +481,10 @@ Running it results in some skips if we don't have all the python interpreters in
481481
.. code-block:: pytest
482482
483483
. $ pytest -rs -q multipython.py
484-
ssssssssssss...ssssssssssss [100%]
484+
ssssssssssss......sss...... [100%]
485485
========================= short test summary info ==========================
486-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
487-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.7' not found
488-
3 passed, 24 skipped in 0.12s
486+
SKIPPED [15] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
487+
12 passed, 15 skipped in 0.12s
489488
490489
Indirect parametrization of optional implementations/imports
491490
--------------------------------------------------------------------

0 commit comments

Comments
 (0)