File tree 7 files changed +35
-9
lines changed
7 files changed +35
-9
lines changed 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-5.3.5
9
10
release-5.3.4
10
11
release-5.3.3
11
12
release-5.3.2
Original file line number Diff line number Diff line change
1
+ pytest-5.3.5
2
+ =======================================
3
+
4
+ pytest 5.3.5 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
+ * Daniel Hahler
15
+ * Ran Benita
16
+
17
+
18
+ Happy testing,
19
+ The pytest Development Team
Original file line number Diff line number Diff line change @@ -28,6 +28,15 @@ with advance notice in the **Deprecations** section of releases.
28
28
29
29
.. towncrier release notes start
30
30
31
+ pytest 5.3.5 (2020-01-29)
32
+ =========================
33
+
34
+ Bug Fixes
35
+ ---------
36
+
37
+ - `#6517 <https://github.com/pytest-dev/pytest/issues/6517 >`_: Fix regression in pytest 5.3.4 causing an INTERNALERROR due to a wrong assertion.
38
+
39
+
31
40
pytest 5.3.4 (2020-01-20)
32
41
=========================
33
42
Original file line number Diff line number Diff line change @@ -475,11 +475,8 @@ Running it results in some skips if we don't have all the python interpreters in
475
475
.. code-block :: pytest
476
476
477
477
. $ pytest -rs -q multipython.py
478
- ssssssssssss...ssssssssssss [100%]
479
- ========================= short test summary info ==========================
480
- SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
481
- SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.7' not found
482
- 3 passed, 24 skipped in 0.12s
478
+ ........................... [100%]
479
+ 27 passed in 0.12s
483
480
484
481
Indirect parametrization of optional implementations/imports
485
482
--------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -436,7 +436,7 @@ Here is a nice run of several failures and how ``pytest`` presents things:
436
436
items = [1, 2, 3]
437
437
print("items is {!r}".format(items))
438
438
> a, b = items.pop()
439
- E TypeError: 'int' object is not iterable
439
+ E TypeError: cannot unpack non-iterable int object
440
440
441
441
failure_demo.py:181: TypeError
442
442
--------------------------- Captured stdout call ---------------------------
@@ -516,7 +516,7 @@ Here is a nice run of several failures and how ``pytest`` presents things:
516
516
def test_z2_type_error(self):
517
517
items = 3
518
518
> a, b = items
519
- E TypeError: 'int' object is not iterable
519
+ E TypeError: cannot unpack non-iterable int object
520
520
521
521
failure_demo.py:222: TypeError
522
522
______________________ TestMoreErrors.test_startswith ______________________
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ Now we can profile which test functions execute the slowest:
443
443
========================= slowest 3 test durations =========================
444
444
0.30s call test_some_are_slow.py::test_funcslow2
445
445
0.20s call test_some_are_slow.py::test_funcslow1
446
- 0.11s call test_some_are_slow.py::test_funcfast
446
+ 0.10s call test_some_are_slow.py::test_funcfast
447
447
============================ 3 passed in 0.12s =============================
448
448
449
449
incremental testing - test steps
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Install ``pytest``
28
28
.. code-block :: bash
29
29
30
30
$ pytest --version
31
- This is pytest version 5.x.y, imported from $PYTHON_PREFIX /lib/python3.6 /site-packages/pytest/__init__.py
31
+ This is pytest version 5.x.y, imported from $PYTHON_PREFIX /lib/python3.8 /site-packages/pytest/__init__.py
32
32
33
33
.. _`simpletest` :
34
34
You can’t perform that action at this time.
0 commit comments