Merge pull request #7584 from pytest-dev/release-6.0.1
Prepare release 6.0.1 (cherry picked from commit 022bff27a71406bd5dc4794d34f1fbbf56a45250)
This commit is contained in:
parent
645cbc91fc
commit
e49f1d6f60
|
@ -1,2 +0,0 @@
|
||||||
Passing an empty ``help`` value to ``Parser.add_option`` is now accepted instead of crashing when running ``pytest --help``.
|
|
||||||
Passing ``None`` raises a more informative ``TypeError``.
|
|
|
@ -1,2 +0,0 @@
|
||||||
Fix pylint ``not-callable`` lint on ``pytest.mark.parametrize()`` and the other builtin marks:
|
|
||||||
``skip``, ``skipif``, ``xfail``, ``usefixtures``, ``filterwarnings``.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix regression in plugins using ``TestReport.longreprtext`` (such as ``pytest-html``) when ``TestReport.longrepr`` is not a string.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix logging capture handler's level not reset on teardown after a call to ``caplog.set_level()``.
|
|
|
@ -6,6 +6,7 @@ Release announcements
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
|
||||||
|
release-6.0.1
|
||||||
release-6.0.0
|
release-6.0.0
|
||||||
release-6.0.0rc1
|
release-6.0.0rc1
|
||||||
release-5.4.3
|
release-5.4.3
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
pytest-6.0.1
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
pytest 6.0.1 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:
|
||||||
|
|
||||||
|
* Bruno Oliveira
|
||||||
|
* Mattreex
|
||||||
|
* Ran Benita
|
||||||
|
* hp310780
|
||||||
|
|
||||||
|
|
||||||
|
Happy testing,
|
||||||
|
The pytest Development Team
|
|
@ -28,6 +28,26 @@ with advance notice in the **Deprecations** section of releases.
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. towncrier release notes start
|
||||||
|
|
||||||
|
pytest 6.0.1 (2020-07-30)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------
|
||||||
|
|
||||||
|
- `#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``.
|
||||||
|
Passing ``None`` raises a more informative ``TypeError``.
|
||||||
|
|
||||||
|
|
||||||
|
- `#7558 <https://github.com/pytest-dev/pytest/issues/7558>`_: Fix pylint ``not-callable`` lint on ``pytest.mark.parametrize()`` and the other builtin marks:
|
||||||
|
``skip``, ``skipif``, ``xfail``, ``usefixtures``, ``filterwarnings``.
|
||||||
|
|
||||||
|
|
||||||
|
- `#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.
|
||||||
|
|
||||||
|
|
||||||
|
- `#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()``.
|
||||||
|
|
||||||
|
|
||||||
pytest 6.0.0 (2020-07-28)
|
pytest 6.0.0 (2020-07-28)
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ Install ``pytest``
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ pytest --version
|
$ pytest --version
|
||||||
pytest 6.0.0
|
pytest 6.0.1
|
||||||
|
|
||||||
.. _`simpletest`:
|
.. _`simpletest`:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue