Skip to content

Commit 3a668ea

Browse files
authored
Merge pull request #6198 from asottile/release-5.2.4
Preparing release version 5.2.4
2 parents 19a15a9 + c9a96cd commit 3a668ea

File tree

6 files changed

+38
-6
lines changed

6 files changed

+38
-6
lines changed

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ with advance notice in the **Deprecations** section of releases.
1818
1919
.. towncrier release notes start
2020
21+
pytest 5.2.4 (2019-11-15)
22+
=========================
23+
24+
Bug Fixes
25+
---------
26+
27+
- `#6194 <https://github.com/pytest-dev/pytest/issues/6194>`_: Fix incorrect discovery of non-test ``__init__.py`` files.
28+
29+
30+
- `#6197 <https://github.com/pytest-dev/pytest/issues/6197>`_: Revert "The first test in a package (``__init__.py``) marked with ``@pytest.mark.skip`` is now correctly skipped.".
31+
32+
2133
pytest 5.2.3 (2019-11-14)
2234
=========================
2335

changelog/6194.bugfix.rst

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

changelog/6197.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-5.2.4
910
release-5.2.3
1011
release-5.2.2
1112
release-5.2.1

doc/en/announce/release-5.2.4.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
pytest-5.2.4
2+
=======================================
3+
4+
pytest 5.2.4 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+
* Daniel Hahler
17+
* Hugo
18+
* Michael Shields
19+
20+
21+
Happy testing,
22+
The pytest Development Team

doc/en/example/parametrize.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,11 +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-
ssssssssssss...ssssssssssss [100%]
478+
ssssssssssss......sss...... [100%]
479479
========================= short test summary info ==========================
480-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.5' not found
481-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.7' not found
482-
3 passed, 24 skipped in 0.12s
480+
SKIPPED [15] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.5' not found
481+
12 passed, 15 skipped in 0.12s
483482
484483
Indirect parametrization of optional implementations/imports
485484
--------------------------------------------------------------------

0 commit comments

Comments
 (0)