Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into features
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed Mar 5, 2018
2 parents 9879ac5 + 27c4de2 commit ade7ad2
Show file tree
Hide file tree
Showing 11 changed files with 67 additions and 9 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -8,6 +8,43 @@
.. 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)
=========================

Expand Down
1 change: 0 additions & 1 deletion changelog/3203.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3209.doc.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/3241.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3247.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3249.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3259.trivial

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3260.bugfix.rst

This file was deleted.

1 change: 1 addition & 0 deletions doc/en/announce/index.rst
Expand Up @@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2


release-3.4.2
release-3.4.1
release-3.4.0
release-3.3.2
Expand Down
28 changes: 28 additions & 0 deletions doc/en/announce/release-3.4.2.rst
@@ -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
2 changes: 1 addition & 1 deletion doc/en/example/reportingdemo.rst
Expand Up @@ -358,7 +358,7 @@ get on the terminal - we are working on that)::
> int(s)
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 _______________________
self = <failure_demo.TestRaises object at 0xdeadbeef>
Expand Down

0 comments on commit ade7ad2

Please sign in to comment.