Skip to content

Commit 022bff2

Browse files
authored
Merge pull request #7584 from pytest-dev/release-6.0.1
Prepare release 6.0.1
2 parents 0307213 + 92af2e2 commit 022bff2

File tree

8 files changed

+43
-7
lines changed

8 files changed

+43
-7
lines changed

changelog/7394.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/7558.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/7559.bugfix.rst

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

changelog/7569.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-6.0.1
910
release-6.0.0
1011
release-6.0.0rc1
1112
release-5.4.3

doc/en/announce/release-6.0.1.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pytest-6.0.1
2+
=======================================
3+
4+
pytest 6.0.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+
* Bruno Oliveira
15+
* Mattreex
16+
* Ran Benita
17+
* hp310780
18+
19+
20+
Happy testing,
21+
The pytest Development Team

doc/en/changelog.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,26 @@ with advance notice in the **Deprecations** section of releases.
2828

2929
.. towncrier release notes start
3030
31+
pytest 6.0.1 (2020-07-30)
32+
=========================
33+
34+
Bug Fixes
35+
---------
36+
37+
- `#7394 <https://github.com/pytest-dev/pytest/issues/7394>`_: Passing an empty ``help`` value to ``Parser.add_option`` is now accepted instead of crashing when running ``pytest --help``.
38+
Passing ``None`` raises a more informative ``TypeError``.
39+
40+
41+
- `#7558 <https://github.com/pytest-dev/pytest/issues/7558>`_: Fix pylint ``not-callable`` lint on ``pytest.mark.parametrize()`` and the other builtin marks:
42+
``skip``, ``skipif``, ``xfail``, ``usefixtures``, ``filterwarnings``.
43+
44+
45+
- `#7559 <https://github.com/pytest-dev/pytest/issues/7559>`_: Fix regression in plugins using ``TestReport.longreprtext`` (such as ``pytest-html``) when ``TestReport.longrepr`` is not a string.
46+
47+
48+
- `#7569 <https://github.com/pytest-dev/pytest/issues/7569>`_: Fix logging capture handler's level not reset on teardown after a call to ``caplog.set_level()``.
49+
50+
3151
pytest 6.0.0 (2020-07-28)
3252
=========================
3353

doc/en/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Install ``pytest``
2828
.. code-block:: bash
2929
3030
$ pytest --version
31-
pytest 6.0.0
31+
pytest 6.0.1
3232
3333
.. _`simpletest`:
3434

0 commit comments

Comments
 (0)