File tree Expand file tree Collapse file tree 6 files changed +33
-3
lines changed Expand file tree Collapse file tree 6 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,18 @@ with advance notice in the **Deprecations** section of releases.
1818
1919.. towncrier release notes start
2020
21+ pytest 4.6.1 (2019-06-02)
22+ =========================
23+
24+ Bug Fixes
25+ ---------
26+
27+ - `#5354 <https://github.com/pytest-dev/pytest/issues/5354 >`_: Fix ``pytest.mark.parametrize `` when the argvalues is an iterator.
28+
29+
30+ - `#5358 <https://github.com/pytest-dev/pytest/issues/5358 >`_: Fix assertion rewriting of ``all() `` calls to deal with non-generators.
31+
32+
2133pytest 4.6.0 (2019-05-31)
2234=========================
2335
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Release announcements
66 :maxdepth: 2
77
88
9+ release-4.6.1
910 release-4.6.0
1011 release-4.5.0
1112 release-4.4.2
Original file line number Diff line number Diff line change 1+ pytest-4.6.1
2+ =======================================
3+
4+ pytest 4.6.1 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+
17+
18+ Happy testing,
19+ The pytest Development Team
Original file line number Diff line number Diff 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.20s call test_some_are_slow.py::test_funcslow1
444+ 0.21s 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
You can’t perform that action at this time.
0 commit comments