Skip to content

Release 3.6.1 #3534

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,50 @@

.. towncrier release notes start

Pytest 3.6.1 (2018-06-05)
=========================

Bug Fixes
---------

- Fixed a bug where stdout and stderr were logged twice by junitxml when a test
was marked xfail. (`#3491
<https://github.com/pytest-dev/pytest/issues/3491>`_)

- Fix ``usefixtures`` mark applyed to unittest tests by correctly instantiating
``FixtureInfo``. (`#3498
<https://github.com/pytest-dev/pytest/issues/3498>`_)

- Fix assertion rewriter compatibility with libraries that monkey patch
``file`` objects. (`#3503
<https://github.com/pytest-dev/pytest/issues/3503>`_)


Improved Documentation
----------------------

- Added a section on how to use fixtures as factories to the fixture
documentation. (`#3461 <https://github.com/pytest-dev/pytest/issues/3461>`_)


Trivial/Internal Changes
------------------------

- Enable caching for pip/pre-commit in order to reduce build time on
travis/appveyor. (`#3502
<https://github.com/pytest-dev/pytest/issues/3502>`_)

- Switch pytest to the src/ layout as we already suggested it for good practice
- now we implement it as well. (`#3513
<https://github.com/pytest-dev/pytest/issues/3513>`_)

- Fix if in tests to support 3.7.0b5, where a docstring handling in AST got
reverted. (`#3530 <https://github.com/pytest-dev/pytest/issues/3530>`_)

- Remove some python2.5 compatibility code. (`#3629
<https://github.com/pytest-dev/pytest/issues/3629>`_)


Pytest 3.6.0 (2018-05-23)
=========================

Expand Down
1 change: 0 additions & 1 deletion changelog/3461.doc.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3498.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3502.trivial.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3513.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3530.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3629.trivial.rst

This file was deleted.

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


release-3.6.1
release-3.6.0
release-3.5.1
release-3.5.0
Expand Down
24 changes: 24 additions & 0 deletions doc/en/announce/release-3.6.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
pytest-3.6.1
=======================================

pytest 3.6.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:

* Anthony Sottile
* Bruno Oliveira
* Jeffrey Rackauckas
* Miro Hrončok
* Niklas Meinzer
* Oliver Bestwalter
* Ronny Pfannschmidt


Happy testing,
The pytest Development Team
Loading