1pytest-2.8.5
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.8.4.
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  Alex Gaynor
19  aselus-hub
20  Bruno Oliveira
21  Ronny Pfannschmidt
22
23
24Happy testing,
25The py.test Development Team
26
27
282.8.5 (compared to 2.8.4)
29-------------------------
30
31- fix #1243: fixed issue where class attributes injected during collection could break pytest.
32  PR by Alexei Kozlenok, thanks Ronny Pfannschmidt and Bruno Oliveira for the review and help.
33
34- fix #1074: precompute junitxml chunks instead of storing the whole tree in objects
35  Thanks Bruno Oliveira for the report and Ronny Pfannschmidt for the PR
36
37- fix #1238: fix ``pytest.deprecated_call()`` receiving multiple arguments
38  (Regression introduced in 2.8.4). Thanks Alex Gaynor for the report and
39  Bruno Oliveira for the PR.
40