1pytest-2.7.2: bug fixes
2=======================
3
4pytest is a mature Python testing tool with more than a 1100 tests
5against itself, passing on many different interpreters and platforms.
6This release is supposed to be drop-in compatible to 2.7.1.
7
8See below for the changes and see docs at:
9
10    http://pytest.org
11
12As usual, you can upgrade from pypi via::
13
14    pip install -U pytest
15
16Thanks to all who contributed to this release, among them:
17
18    Bruno Oliveira
19    Floris Bruynooghe
20    Punyashloka Biswal
21    Aron Curzon
22    Benjamin Peterson
23    Thomas De Schampheleire
24    Edison Gustavo Muenz
25    Holger Krekel
26
27Happy testing,
28The py.test Development Team
29
30
312.7.2 (compared to 2.7.1)
32-----------------------------
33
34- fix issue767: pytest.raises value attribute does not contain the exception
35  instance on Python 2.6. Thanks Eric Siegerman for providing the test
36  case and Bruno Oliveira for PR.
37
38- Automatically create directory for junitxml and results log.
39  Thanks Aron Curzon.
40
41- fix issue713: JUnit XML reports for doctest failures.
42  Thanks Punyashloka Biswal.
43
44- fix issue735: assertion failures on debug versions of Python 3.4+
45  Thanks Benjamin Peterson.
46
47- fix issue114: skipif marker reports to internal skipping plugin;
48  Thanks Floris Bruynooghe for reporting and Bruno Oliveira for the PR.
49
50- fix issue748: unittest.SkipTest reports to internal pytest unittest plugin.
51  Thanks Thomas De Schampheleire for reporting and Bruno Oliveira for the PR.
52
53- fix issue718: failed to create representation of sets containing unsortable
54  elements in python 2. Thanks Edison Gustavo Muenz
55
56- fix issue756, fix issue752 (and similar issues): depend on py-1.4.29
57  which has a refined algorithm for traceback generation.
58
59