Skip to content

Commit b2d7c26

Browse files
authored
Merge pull request #2483 from nicoddemus/release-3.1.2
Preparing release version 3.1.2
2 parents 917b9a8 + 7cbf265 commit b2d7c26

File tree

11 files changed

+56
-13
lines changed

11 files changed

+56
-13
lines changed

CHANGELOG.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,38 @@
88
99
.. towncrier release notes start
1010
11+
Pytest 3.1.2 (2017-06-08)
12+
=========================
13+
14+
Bug Fixes
15+
---------
16+
17+
- Required options added via ``pytest_addoption`` will no longer prevent using
18+
--help without passing them. (#1999)
19+
20+
- Respect ``python_files`` in assertion rewriting. (#2121)
21+
22+
- Fix recursion error detection when frames in the traceback contain objects
23+
that can't be compared (like ``numpy`` arrays). (#2459)
24+
25+
- ``UnicodeWarning`` is issued from the internal pytest warnings plugin only
26+
when the message contains non-ascii unicode (Python 2 only). (#2463)
27+
28+
- Added a workaround for Python 3.6 WindowsConsoleIO breaking due to Pytests's
29+
FDCapture. Other code using console handles might still be affected by the
30+
very same issue and might require further workarounds/fixes, i.e. colorama.
31+
(#2467)
32+
33+
34+
Improved Documentation
35+
----------------------
36+
37+
- Fix internal API links to ``pluggy`` objects. (#2331)
38+
39+
- Make it clear that ``pytest.xfail`` stops test execution at the calling point
40+
and improve overall flow of the ``skipping`` docs. (#810)
41+
42+
1143
Pytest 3.1.1 (2017-05-30)
1244
=========================
1345

changelog/1999.bugfix

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/2121.bugfix

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

changelog/2331.doc

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

changelog/2459.bugfix

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

changelog/2463.bugfix

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelog/2467.bugfix

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog/810.doc

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.1.2
910
release-3.1.1
1011
release-3.1.0
1112
release-3.0.7

doc/en/announce/release-3.1.2.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
pytest-3.1.2
2+
=======================================
3+
4+
pytest 3.1.2 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+
* Andreas Pelme
15+
* ApaDoctor
16+
* Bruno Oliveira
17+
* Florian Bruhin
18+
* Ronny Pfannschmidt
19+
* Segev Finer
20+
21+
22+
Happy testing,
23+
The pytest Development Team

doc/en/skipping.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,6 @@ Running it with the report-on-xfail option gives this output::
322322
323323
======= 7 xfailed in 0.12 seconds ========
324324

325-
326-
327325
.. _`skip/xfail with parametrize`:
328326

329327
Skip/xfail with parametrize

0 commit comments

Comments
 (0)