diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 811f7475d..390fe84ca 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -243,6 +243,27 @@ Improved Documentation - `#5416 `_: Fix PytestUnknownMarkWarning in run/skip example. +pytest 4.6.5 (2019-08-05) +========================= + +Bug Fixes +--------- + +- `#4344 `_: Fix RuntimeError/StopIteration when trying to collect package with "__init__.py" only. + + +- `#5478 `_: Fix encode error when using unicode strings in exceptions with ``pytest.raises``. + + +- `#5524 `_: Fix issue where ``tmp_path`` and ``tmpdir`` would not remove directories containing files marked as read-only, + which could lead to pytest crashing when executed a second time with the ``--basetemp`` option. + + +- `#5547 `_: ``--step-wise`` now handles ``xfail(strict=True)`` markers properly. + + +- `#5650 `_: Improved output when parsing an ini configuration file fails. + pytest 4.6.4 (2019-06-28) ========================= diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 84cbdd9d3..d372c92fa 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -8,6 +8,7 @@ Release announcements release-5.0.1 release-5.0.0 + release-4.6.5 release-4.6.4 release-4.6.3 release-4.6.2 diff --git a/doc/en/announce/release-4.6.5.rst b/doc/en/announce/release-4.6.5.rst new file mode 100644 index 000000000..6998d4e4c --- /dev/null +++ b/doc/en/announce/release-4.6.5.rst @@ -0,0 +1,21 @@ +pytest-4.6.5 +======================================= + +pytest 4.6.5 has just been released to PyPI. + +This is a bug-fix release, being a drop-in replacement. To upgrade:: + + pip install --upgrade pytest + +The full changelog is available at https://docs.pytest.org/en/latest/changelog.html. + +Thanks to all who contributed to this release, among them: + +* Anthony Sottile +* Bruno Oliveira +* Daniel Hahler +* Thomas Grainger + + +Happy testing, +The pytest Development Team