Preparing release version 3.3.1
This commit is contained in:
parent
5c6758fde4
commit
2a111ff700
|
@ -8,6 +8,48 @@
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. towncrier release notes start
|
||||||
|
|
||||||
|
Pytest 3.3.1 (2017-12-05)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------
|
||||||
|
|
||||||
|
- Fix issue about ``-p no:<plugin>`` having no effect. (`#2920
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/2920>`_)
|
||||||
|
|
||||||
|
- Fix regression with warnings that contained non-strings in their arguments in
|
||||||
|
Python 2. (`#2956 <https://github.com/pytest-dev/pytest/issues/2956>`_)
|
||||||
|
|
||||||
|
- Always escape null bytes when setting ``PYTEST_CURRENT_TEST``. (`#2957
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/2957>`_)
|
||||||
|
|
||||||
|
- Fix ``ZeroDivisionError`` when using the ``testmon`` plugin when no tests
|
||||||
|
were actually collected. (`#2971
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/2971>`_)
|
||||||
|
|
||||||
|
- Bring back ``TerminalReporter.writer`` as an alias to
|
||||||
|
``TerminalReporter._tw``. This alias was removed by accident in the ``3.3.0``
|
||||||
|
release. (`#2984 <https://github.com/pytest-dev/pytest/issues/2984>`_)
|
||||||
|
|
||||||
|
- The pytest-capturelog plugin is now also blacklisted, avoiding errors when
|
||||||
|
running pytest with it still installed. (`#3004
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3004>`_)
|
||||||
|
|
||||||
|
|
||||||
|
Improved Documentation
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
- Fix broken link to plugin pytest-localserver. (`#2963
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/2963>`_)
|
||||||
|
|
||||||
|
|
||||||
|
Trivial/Internal Changes
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
- Update github "bugs" link in CONTRIBUTING.rst (`#2949
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/2949>`_)
|
||||||
|
|
||||||
|
|
||||||
Pytest 3.3.0 (2017-11-23)
|
Pytest 3.3.0 (2017-11-23)
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix issue about ``-p no:<plugin>`` having no effect.
|
|
|
@ -1 +0,0 @@
|
||||||
Update github "bugs" link in CONTRIBUTING.rst
|
|
|
@ -1 +0,0 @@
|
||||||
Fix regression with warnings that contained non-strings in their arguments in Python 2.
|
|
|
@ -1 +0,0 @@
|
||||||
Always escape null bytes when setting ``PYTEST_CURRENT_TEST``.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix broken link to plugin pytest-localserver.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix ``ZeroDivisionError`` when using the ``testmon`` plugin when no tests were actually collected.
|
|
|
@ -1 +0,0 @@
|
||||||
Bring back ``TerminalReporter.writer`` as an alias to ``TerminalReporter._tw``. This alias was removed by accident in the ``3.3.0`` release.
|
|
|
@ -1 +0,0 @@
|
||||||
The pytest-capturelog plugin is now also blacklisted, avoiding errors when running pytest with it still installed.
|
|
|
@ -6,6 +6,7 @@ Release announcements
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
|
||||||
|
release-3.3.1
|
||||||
release-3.3.0
|
release-3.3.0
|
||||||
release-3.2.5
|
release-3.2.5
|
||||||
release-3.2.4
|
release-3.2.4
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
pytest-3.3.1
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
pytest 3.3.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 http://doc.pytest.org/en/latest/changelog.html.
|
||||||
|
|
||||||
|
Thanks to all who contributed to this release, among them:
|
||||||
|
|
||||||
|
* Bruno Oliveira
|
||||||
|
* Daniel Hahler
|
||||||
|
* Eugene Prikazchikov
|
||||||
|
* Florian Bruhin
|
||||||
|
* Roland Puntaier
|
||||||
|
* Ronny Pfannschmidt
|
||||||
|
* Sebastian Rahlf
|
||||||
|
* Tom Viner
|
||||||
|
|
||||||
|
|
||||||
|
Happy testing,
|
||||||
|
The pytest Development Team
|
Loading…
Reference in New Issue