1pytest-2.2.4: bug fixes, better junitxml/unittest/python3 compat
2===========================================================================
3
4pytest-2.2.4 is a minor backward-compatible release of the versatile
5py.test testing tool.   It contains bug fixes and a few refinements
6to junitxml reporting, better unittest- and python3 compatibility.
7
8For general information see here:
9
10     http://pytest.org/
11
12To install or upgrade pytest:
13
14    pip install -U pytest # or
15    easy_install -U pytest
16
17Special thanks for helping on this release to Ronny Pfannschmidt
18and Benjamin Peterson and the contributors of issues.
19
20best,
21holger krekel
22
23Changes between 2.2.3 and 2.2.4
24-----------------------------------
25
26- fix error message for rewritten assertions involving the % operator
27- fix issue 126: correctly match all invalid xml characters for junitxml
28  binary escape
29- fix issue with unittest: now @unittest.expectedFailure markers should
30  be processed correctly (you can also use @pytest.mark markers)
31- document integration with the extended distribute/setuptools test commands
32- fix issue 140: propperly get the real functions
33  of bound classmethods for setup/teardown_class
34- fix issue #141: switch from the deceased paste.pocoo.org to bpaste.net
35- fix issue #143: call unconfigure/sessionfinish always when
36  configure/sessionstart where called
37- fix issue #144: better mangle test ids to junitxml classnames
38- upgrade distribute_setup.py to 0.6.27
39
40