Skip to content

Commit c8caa87

Browse files
committed
Merge branch 'release-2.8.6'
2 parents 61c569f + b7de040 commit c8caa87

File tree

6 files changed

+75
-7
lines changed

6 files changed

+75
-7
lines changed

CHANGELOG

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
2.8.6.dev1
1+
2.8.7.dev1
22
----------
33

4+
5+
2.8.6
6+
-----
7+
48
- fix #1259: allow for double nodeids in junitxml,
59
this was a regression failing plugins combinations
610
like pytest-pep8 + pytest-flakes

HOWTORELEASE.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ Note: this assumes you have already registered on pypi.
2727
devpi list pytest
2828

2929
or look at failures with "devpi list -f pytest".
30-
There will be some failed environments like e.g. the py33-trial
31-
or py27-pexpect tox environments on Win32 platforms
32-
which is ok (tox does not support skipping on
33-
per-platform basis yet).
3430

3531
7. Regenerate the docs examples using tox, and check for regressions::
3632

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. image:: doc/en/img/pytest1.png
1+
.. image:: http://pytest.org/latest/_static/pytest1.png
22
:target: http://pytest.org
33
:align: center
44
:alt: pytest

_pytest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#
2-
__version__ = '2.8.6.dev1'
2+
__version__ = '2.8.7.dev1'

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-2.8.6
910
release-2.8.5
1011
release-2.8.4
1112
release-2.8.3

doc/en/announce/release-2.8.6.rst

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
pytest-2.8.6
2+
============
3+
4+
pytest is a mature Python testing tool with more than a 1100 tests
5+
against itself, passing on many different interpreters and platforms.
6+
This release is supposed to be drop-in compatible to 2.8.5.
7+
8+
See below for the changes and see docs at:
9+
10+
http://pytest.org
11+
12+
As usual, you can upgrade from pypi via::
13+
14+
pip install -U pytest
15+
16+
Thanks to all who contributed to this release, among them:
17+
18+
AMiT Kumar
19+
Bruno Oliveira
20+
Erik M. Bray
21+
Florian Bruhin
22+
Georgy Dyuldin
23+
Jeff Widman
24+
Kartik Singhal
25+
Loïc Estève
26+
Manu Phatak
27+
Peter Demin
28+
Rick van Hattem
29+
Ronny Pfannschmidt
30+
Ulrich Petri
31+
foxx
32+
33+
34+
Happy testing,
35+
The py.test Development Team
36+
37+
38+
2.8.6 (compared to 2.8.5)
39+
-------------------------
40+
41+
- fix #1259: allow for double nodeids in junitxml,
42+
this was a regression failing plugins combinations
43+
like pytest-pep8 + pytest-flakes
44+
45+
- Workaround for exception that occurs in pyreadline when using
46+
``--pdb`` with standard I/O capture enabled.
47+
Thanks Erik M. Bray for the PR.
48+
49+
- fix #900: Better error message in case the target of a ``monkeypatch`` call
50+
raises an ``ImportError``.
51+
52+
- fix #1292: monkeypatch calls (setattr, setenv, etc.) are now O(1).
53+
Thanks David R. MacIver for the report and Bruno Oliveira for the PR.
54+
55+
- fix #1223: captured stdout and stderr are now properly displayed before
56+
entering pdb when ``--pdb`` is used instead of being thrown away.
57+
Thanks Cal Leeming for the PR.
58+
59+
- fix #1305: pytest warnings emitted during ``pytest_terminal_summary`` are now
60+
properly displayed.
61+
Thanks Ionel Maries Cristian for the report and Bruno Oliveira for the PR.
62+
63+
- fix #628: fixed internal UnicodeDecodeError when doctests contain unicode.
64+
Thanks Jason R. Coombs for the report and Bruno Oliveira for the PR.
65+
66+
- fix #1334: Add captured stdout to jUnit XML report on setup error.
67+
Thanks Georgy Dyuldin for the PR.

0 commit comments

Comments
 (0)