Skip to content

Commit 5e8c47f

Browse files
committed
Preparing release version 5.2.3
1 parent 92d6a05 commit 5e8c47f

File tree

9 files changed

+50
-9
lines changed

9 files changed

+50
-9
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,22 @@ with advance notice in the **Deprecations** section of releases.
1818
1919
.. towncrier release notes start
2020
21+
pytest 5.2.3 (2019-11-14)
22+
=========================
23+
24+
Bug Fixes
25+
---------
26+
27+
- `#5830 <https://github.com/pytest-dev/pytest/issues/5830>`_: Fix fail skipping the first test in package marked as ``skip``
28+
29+
30+
- `#6099 <https://github.com/pytest-dev/pytest/issues/6099>`_: Fix ``--trace`` when used with parametrized functions.
31+
32+
33+
- `#6183 <https://github.com/pytest-dev/pytest/issues/6183>`_: Using ``request`` as a parameter name in ``@pytest.mark.parametrize`` now produces a more
34+
user-friendly error.
35+
36+
2137
pytest 5.2.2 (2019-10-24)
2238
=========================
2339

changelog/5830.bugfix.rst

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

changelog/6099.bugfix.rst

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

changelog/6183.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.2.3
910
release-5.2.2
1011
release-5.2.1
1112
release-5.2.0

doc/en/announce/release-5.2.3.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
pytest-5.2.3
2+
=======================================
3+
4+
pytest 5.2.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+
* Brett Cannon
16+
* Bruno Oliveira
17+
* Daniel Hahler
18+
* Daniil Galiev
19+
* David Szotten
20+
* Florian Bruhin
21+
* Patrick Harmon
22+
* Ran Benita
23+
* Zac Hatfield-Dodds
24+
* Zak Hassan
25+
26+
27+
Happy testing,
28+
The pytest Development Team

doc/en/example/parametrize.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,10 +475,10 @@ Running it results in some skips if we don't have all the python interpreters in
475475
.. code-block:: pytest
476476
477477
. $ pytest -rs -q multipython.py
478-
ssssssssssssssssssssssss... [100%]
478+
ssssssssssss...ssssssssssss [100%]
479479
========================= short test summary info ==========================
480480
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.5' not found
481-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.6' not found
481+
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.7' not found
482482
3 passed, 24 skipped in 0.12s
483483
484484
Indirect parametrization of optional implementations/imports

doc/en/example/reportingdemo.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ Here is a nice run of several failures and how ``pytest`` presents things:
436436
items = [1, 2, 3]
437437
print("items is {!r}".format(items))
438438
> a, b = items.pop()
439-
E TypeError: cannot unpack non-iterable int object
439+
E TypeError: 'int' object is not iterable
440440
441441
failure_demo.py:181: TypeError
442442
--------------------------- Captured stdout call ---------------------------
@@ -516,7 +516,7 @@ Here is a nice run of several failures and how ``pytest`` presents things:
516516
def test_z2_type_error(self):
517517
items = 3
518518
> a, b = items
519-
E TypeError: cannot unpack non-iterable int object
519+
E TypeError: 'int' object is not iterable
520520
521521
failure_demo.py:222: TypeError
522522
______________________ TestMoreErrors.test_startswith ______________________

doc/en/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Install ``pytest``
2828
.. code-block:: bash
2929
3030
$ pytest --version
31-
This is pytest version 5.x.y, imported from $PYTHON_PREFIX/lib/python3.7/site-packages/pytest.py
31+
This is pytest version 5.x.y, imported from $PYTHON_PREFIX/lib/python3.6/site-packages/pytest.py
3232
3333
.. _`simpletest`:
3434

0 commit comments

Comments
 (0)