Merge remote-tracking branch 'upstream/master' into features
This commit is contained in:
commit
ade7ad25c7
|
@ -8,6 +8,43 @@
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. towncrier release notes start
|
||||||
|
|
||||||
|
Pytest 3.4.2 (2018-03-04)
|
||||||
|
=========================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------
|
||||||
|
|
||||||
|
- Removed progress information when capture option is ``no``. (`#3203
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3203>`_)
|
||||||
|
|
||||||
|
- Refactor check of bindir from ``exists`` to ``isdir``. (`#3241
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3241>`_)
|
||||||
|
|
||||||
|
- Fix ``TypeError`` issue when using ``approx`` with a ``Decimal`` value.
|
||||||
|
(`#3247 <https://github.com/pytest-dev/pytest/issues/3247>`_)
|
||||||
|
|
||||||
|
- Fix reference cycle generated when using the ``request`` fixture. (`#3249
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3249>`_)
|
||||||
|
|
||||||
|
- ``[tool:pytest]`` sections in ``*.cfg`` files passed by the ``-c`` option are
|
||||||
|
now properly recognized. (`#3260
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3260>`_)
|
||||||
|
|
||||||
|
|
||||||
|
Improved Documentation
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
- Add logging plugin to plugins list. (`#3209
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3209>`_)
|
||||||
|
|
||||||
|
|
||||||
|
Trivial/Internal Changes
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
- Fix minor typo in fixture.rst (`#3259
|
||||||
|
<https://github.com/pytest-dev/pytest/issues/3259>`_)
|
||||||
|
|
||||||
|
|
||||||
Pytest 3.4.1 (2018-02-20)
|
Pytest 3.4.1 (2018-02-20)
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Removed progress information when capture option is ``no``.
|
|
|
@ -1 +0,0 @@
|
||||||
Add logging plugin to plugins list.
|
|
|
@ -1,2 +0,0 @@
|
||||||
Refactor check of bindir from ``exists`` to ``isdir`` regarding `#3241 <https://github.com/pytest-dev/pytest/issues/3241>`_.
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix ``TypeError`` issue when using ``approx`` with a ``Decimal`` value.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix reference cycle generated when using the ``request`` fixture.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix minor typo in fixture.rst
|
|
|
@ -1 +0,0 @@
|
||||||
``[tool:pytest]`` sections in ``*.cfg`` files passed by the ``-c`` option are now properly recognized.
|
|
|
@ -6,6 +6,7 @@ Release announcements
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
|
||||||
|
release-3.4.2
|
||||||
release-3.4.1
|
release-3.4.1
|
||||||
release-3.4.0
|
release-3.4.0
|
||||||
release-3.3.2
|
release-3.3.2
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
pytest-3.4.2
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
pytest 3.4.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 http://doc.pytest.org/en/latest/changelog.html.
|
||||||
|
|
||||||
|
Thanks to all who contributed to this release, among them:
|
||||||
|
|
||||||
|
* Allan Feldman
|
||||||
|
* Bruno Oliveira
|
||||||
|
* Florian Bruhin
|
||||||
|
* Jason R. Coombs
|
||||||
|
* Kyle Altendorf
|
||||||
|
* Maik Figura
|
||||||
|
* Ronny Pfannschmidt
|
||||||
|
* codetriage-readme-bot
|
||||||
|
* feuillemorte
|
||||||
|
* joshm91
|
||||||
|
* mike
|
||||||
|
|
||||||
|
|
||||||
|
Happy testing,
|
||||||
|
The pytest Development Team
|
|
@ -358,7 +358,7 @@ get on the terminal - we are working on that)::
|
||||||
> int(s)
|
> int(s)
|
||||||
E ValueError: invalid literal for int() with base 10: 'qwe'
|
E ValueError: invalid literal for int() with base 10: 'qwe'
|
||||||
|
|
||||||
<0-codegen $PYTHON_PREFIX/lib/python3.5/site-packages/_pytest/python_api.py:583>:1: ValueError
|
<0-codegen $PYTHON_PREFIX/lib/python3.5/site-packages/_pytest/python_api.py:595>:1: ValueError
|
||||||
______________________ TestRaises.test_raises_doesnt _______________________
|
______________________ TestRaises.test_raises_doesnt _______________________
|
||||||
|
|
||||||
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
self = <failure_demo.TestRaises object at 0xdeadbeef>
|
||||||
|
|
Loading…
Reference in New Issue