Skip to content

Commit 54dbfb5

Browse files
authored
Merge pull request #5379 from asottile/release-4.6.2
Preparing release version 4.6.2
2 parents 2a8b463 + 70f0b77 commit 54dbfb5

File tree

7 files changed

+35
-4
lines changed

7 files changed

+35
-4
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@ with advance notice in the **Deprecations** section of releases.
1818
1919
.. towncrier release notes start
2020
21+
pytest 4.6.2 (2019-06-03)
22+
=========================
23+
24+
Bug Fixes
25+
---------
26+
27+
- `#5370 <https://github.com/pytest-dev/pytest/issues/5370>`_: Revert unrolling of ``all()`` to fix ``NameError`` on nested comprehensions.
28+
29+
30+
- `#5371 <https://github.com/pytest-dev/pytest/issues/5371>`_: Revert unrolling of ``all()`` to fix incorrect handling of generators with ``if``.
31+
32+
33+
- `#5372 <https://github.com/pytest-dev/pytest/issues/5372>`_: Revert unrolling of ``all()`` to fix incorrect assertion when using ``all()`` in an expression.
34+
35+
2136
pytest 4.6.1 (2019-06-02)
2237
=========================
2338

changelog/5370.bugfix.rst

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

changelog/5371.bugfix.rst

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

changelog/5372.bugfix.rst

Lines changed: 0 additions & 1 deletion
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-4.6.2
910
release-4.6.1
1011
release-4.6.0
1112
release-4.5.0

doc/en/announce/release-4.6.2.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pytest-4.6.2
2+
=======================================
3+
4+
pytest 4.6.2 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+
16+
17+
Happy testing,
18+
The pytest Development Team

doc/en/example/simple.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ Now we can profile which test functions execute the slowest:
441441
442442
========================= slowest 3 test durations =========================
443443
0.30s call test_some_are_slow.py::test_funcslow2
444-
0.21s call test_some_are_slow.py::test_funcslow1
444+
0.20s call test_some_are_slow.py::test_funcslow1
445445
0.10s call test_some_are_slow.py::test_funcfast
446446
========================= 3 passed in 0.12 seconds =========================
447447

0 commit comments

Comments
 (0)