Merge pull request #5435 from asottile/release-4.6.3
Preparing release version 4.6.3
This commit is contained in:
commit
d2c1a04532
|
@ -18,6 +18,22 @@ with advance notice in the **Deprecations** section of releases.
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. towncrier release notes start
|
||||||
|
|
||||||
|
pytest 4.6.3 (2019-06-11)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------
|
||||||
|
|
||||||
|
- `#5383 <https://github.com/pytest-dev/pytest/issues/5383>`_: ``-q`` has again an impact on the style of the collected items
|
||||||
|
(``--collect-only``) when ``--log-cli-level`` is used.
|
||||||
|
|
||||||
|
|
||||||
|
- `#5389 <https://github.com/pytest-dev/pytest/issues/5389>`_: Fix regressions of `#5063 <https://github.com/pytest-dev/pytest/pull/5063>`__ for ``importlib_metadata.PathDistribution`` which have their ``files`` attribute being ``None``.
|
||||||
|
|
||||||
|
|
||||||
|
- `#5390 <https://github.com/pytest-dev/pytest/issues/5390>`_: Fix regression where the ``obj`` attribute of ``TestCase`` items was no longer bound to methods.
|
||||||
|
|
||||||
|
|
||||||
pytest 4.6.2 (2019-06-03)
|
pytest 4.6.2 (2019-06-03)
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
``-q`` has again an impact on the style of the collected items
|
|
||||||
(``--collect-only``) when ``--log-cli-level`` is used.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix regressions of `#5063 <https://github.com/pytest-dev/pytest/pull/5063>`__ for ``importlib_metadata.PathDistribution`` which have their ``files`` attribute being ``None``.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix regression where the ``obj`` attribute of ``TestCase`` items was no longer bound to methods.
|
|
|
@ -6,6 +6,7 @@ Release announcements
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
|
||||||
|
release-4.6.3
|
||||||
release-4.6.2
|
release-4.6.2
|
||||||
release-4.6.1
|
release-4.6.1
|
||||||
release-4.6.0
|
release-4.6.0
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
pytest-4.6.3
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
pytest 4.6.3 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
|
||||||
|
* Dirk Thomas
|
||||||
|
|
||||||
|
|
||||||
|
Happy testing,
|
||||||
|
The pytest Development Team
|
Loading…
Reference in New Issue