Skip to content

Commit 56b3a9e

Browse files
authored
Merge pull request #3534 from nicoddemus/release-3.6.1
Release 3.6.1
2 parents cc793a8 + 2a79f58 commit 56b3a9e

15 files changed

+208
-119
lines changed

CHANGELOG.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,50 @@
88
99
.. towncrier release notes start
1010
11+
Pytest 3.6.1 (2018-06-05)
12+
=========================
13+
14+
Bug Fixes
15+
---------
16+
17+
- Fixed a bug where stdout and stderr were logged twice by junitxml when a test
18+
was marked xfail. (`#3491
19+
<https://github.com/pytest-dev/pytest/issues/3491>`_)
20+
21+
- Fix ``usefixtures`` mark applyed to unittest tests by correctly instantiating
22+
``FixtureInfo``. (`#3498
23+
<https://github.com/pytest-dev/pytest/issues/3498>`_)
24+
25+
- Fix assertion rewriter compatibility with libraries that monkey patch
26+
``file`` objects. (`#3503
27+
<https://github.com/pytest-dev/pytest/issues/3503>`_)
28+
29+
30+
Improved Documentation
31+
----------------------
32+
33+
- Added a section on how to use fixtures as factories to the fixture
34+
documentation. (`#3461 <https://github.com/pytest-dev/pytest/issues/3461>`_)
35+
36+
37+
Trivial/Internal Changes
38+
------------------------
39+
40+
- Enable caching for pip/pre-commit in order to reduce build time on
41+
travis/appveyor. (`#3502
42+
<https://github.com/pytest-dev/pytest/issues/3502>`_)
43+
44+
- Switch pytest to the src/ layout as we already suggested it for good practice
45+
- now we implement it as well. (`#3513
46+
<https://github.com/pytest-dev/pytest/issues/3513>`_)
47+
48+
- Fix if in tests to support 3.7.0b5, where a docstring handling in AST got
49+
reverted. (`#3530 <https://github.com/pytest-dev/pytest/issues/3530>`_)
50+
51+
- Remove some python2.5 compatibility code. (`#3629
52+
<https://github.com/pytest-dev/pytest/issues/3629>`_)
53+
54+
1155
Pytest 3.6.0 (2018-05-23)
1256
=========================
1357

changelog/3461.doc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3491.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3498.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3502.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3503.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3513.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3530.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3629.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/en/announce/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release announcements
66
:maxdepth: 2
77

88

9+
release-3.6.1
910
release-3.6.0
1011
release-3.5.1
1112
release-3.5.0

doc/en/announce/release-3.6.1.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pytest-3.6.1
2+
=======================================
3+
4+
pytest 3.6.1 has just been released to PyPI.
5+
6+
This is a bug-fix release, being a drop-in replacement. To upgrade::
7+
8+
pip install --upgrade pytest
9+
10+
The full changelog is available at http://doc.pytest.org/en/latest/changelog.html.
11+
12+
Thanks to all who contributed to this release, among them:
13+
14+
* Anthony Sottile
15+
* Bruno Oliveira
16+
* Jeffrey Rackauckas
17+
* Miro Hrončok
18+
* Niklas Meinzer
19+
* Oliver Bestwalter
20+
* Ronny Pfannschmidt
21+
22+
23+
Happy testing,
24+
The pytest Development Team

0 commit comments

Comments
 (0)