Merge pull request #7960 from nicoddemus/cherry-pick-release

Merge pull request #7958 from pytest-dev/release-6.1.2
This commit is contained in:
Bruno Oliveira 2020-10-28 14:36:37 -03:00 committed by GitHub
commit b95991aeea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 43 additions and 2 deletions

View File

@ -1 +0,0 @@
Improve deprecation warning message for ``pytest._fillfuncargs()``.

View File

@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2
release-6.1.2
release-6.1.1
release-6.1.0
release-6.0.2

View File

@ -0,0 +1,22 @@
pytest-6.1.2
=======================================
pytest 6.1.2 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/stable/changelog.html.
Thanks to all of the contributors to this release:
* Bruno Oliveira
* Manuel Mariñez
* Ran Benita
* Vasilis Gerakaris
* William Jamir Silva
Happy testing,
The pytest Development Team

View File

@ -28,6 +28,25 @@ with advance notice in the **Deprecations** section of releases.
.. towncrier release notes start
pytest 6.1.2 (2020-10-28)
=========================
Bug Fixes
---------
- `#7758 <https://github.com/pytest-dev/pytest/issues/7758>`_: Fixed an issue where some files in packages are getting lost from ``--lf`` even though they contain tests that failed. Regressed in pytest 5.4.0.
- `#7911 <https://github.com/pytest-dev/pytest/issues/7911>`_: Directories created by `tmpdir` are now considered stale after 3 days without modification (previous value was 3 hours) to avoid deleting directories still in use in long running test suites.
Improved Documentation
----------------------
- `#7815 <https://github.com/pytest-dev/pytest/issues/7815>`_: Improve deprecation warning message for ``pytest._fillfuncargs()``.
pytest 6.1.1 (2020-10-03)
=========================

View File

@ -28,7 +28,7 @@ Install ``pytest``
.. code-block:: bash
$ pytest --version
pytest 6.1.1
pytest 6.1.2
.. _`simpletest`: