Skip to content

Commit 76c00d1

Browse files
authored
Merge pull request #4909 from nicoddemus/release-4.3.1
Prepare release 4.3.1
2 parents 51bf7c3 + 492cc42 commit 76c00d1

File tree

9 files changed

+56
-7
lines changed

9 files changed

+56
-7
lines changed

CHANGELOG.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,28 @@ with advance notice in the **Deprecations** section of releases.
1818
1919
.. towncrier release notes start
2020
21+
pytest 4.3.1 (2019-03-11)
22+
=========================
23+
24+
Bug Fixes
25+
---------
26+
27+
- `#4810 <https://github.com/pytest-dev/pytest/issues/4810>`_: Logging messages inside ``pytest_runtest_logreport()`` are now properly captured and displayed.
28+
29+
30+
- `#4861 <https://github.com/pytest-dev/pytest/issues/4861>`_: Improve validation of contents written to captured output so it behaves the same as when capture is disabled.
31+
32+
33+
- `#4898 <https://github.com/pytest-dev/pytest/issues/4898>`_: Fix ``AttributeError: FixtureRequest has no 'confg' attribute`` bug in ``testdir.copy_example``.
34+
35+
36+
37+
Trivial/Internal Changes
38+
------------------------
39+
40+
- `#4768 <https://github.com/pytest-dev/pytest/issues/4768>`_: Avoid pkg_resources import at the top-level.
41+
42+
2143
pytest 4.3.0 (2019-02-16)
2244
=========================
2345

changelog/4768.trivial.rst

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

changelog/4810.bugfix.rst

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

changelog/4861.bugfix.rst

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

changelog/4898.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.3.1
910
release-4.3.0
1011
release-4.2.1
1112
release-4.2.0

doc/en/announce/release-4.3.1.rst

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
pytest-4.3.1
2+
=======================================
3+
4+
pytest 4.3.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+
* Andras Mitzki
15+
* Anthony Sottile
16+
* Bruno Oliveira
17+
* Daniel Hahler
18+
* Danilo Horta
19+
* Grygorii Iermolenko
20+
* Jeff Hale
21+
* Kyle Altendorf
22+
* Stephan Hoyer
23+
* Zac Hatfield-Dodds
24+
* Zac-HD
25+
* songbowen
26+
27+
28+
Happy testing,
29+
The pytest Development Team

doc/en/example/parametrize.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,10 @@ Running it results in some skips if we don't have all the python interpreters in
436436
.. code-block:: pytest
437437
438438
. $ pytest -rs -q multipython.py
439-
........................... [100%]
440-
27 passed in 0.12 seconds
439+
...sss...sssssssss...sss... [100%]
440+
========================= short test summary info ==========================
441+
SKIPPED [15] $REGENDOC_TMPDIR/CWD/multipython.py:30: 'python3.4' not found
442+
12 passed, 15 skipped in 0.12 seconds
441443
442444
Indirect parametrization of optional implementations/imports
443445
--------------------------------------------------------------------

doc/en/tmpdir.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ Running this would result in a passed test except for the last
6666
test_tmp_path.py:13: AssertionError
6767
========================= 1 failed in 0.12 seconds =========================
6868
69-
7069
.. _`tmp_path_factory example`:
7170

7271
The ``tmp_path_factory`` fixture

0 commit comments

Comments
 (0)