File tree 4 files changed +33
-1
lines changed 4 files changed +33
-1
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.
18
18
19
19
.. towncrier release notes start
20
20
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
+
21
33
pytest 4.6.0 (2019-05-31)
22
34
=========================
23
35
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Release announcements
6
6
:maxdepth: 2
7
7
8
8
9
+ release-4.6.1
9
10
release-4.6.0
10
11
release-4.5.0
11
12
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:
441
441
442
442
========================= slowest 3 test durations =========================
443
443
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
445
445
0.10s call test_some_are_slow.py::test_funcfast
446
446
========================= 3 passed in 0.12 seconds =========================
447
447
You can’t perform that action at this time.
0 commit comments