1py.test 2.1.2: bug fixes and fixes for jython
2===========================================================================
3
4pytest-2.1.2 is a minor backward compatible maintenance release of the
5popular py.test testing tool.  pytest is commonly used for unit,
6functional- and integration testing.  See extensive docs with examples
7here:
8
9     http://pytest.org/
10
11Most bug fixes address remaining issues with the perfected assertions
12introduced in the 2.1 series - many thanks to the bug reporters and to Benjamin
13Peterson for helping to fix them.  pytest should also work better with
14Jython-2.5.1 (and Jython trunk).
15
16If you want to install or upgrade pytest, just type one of::
17
18    pip install -U pytest # or
19    easy_install -U pytest
20
21best,
22holger krekel / http://merlinux.eu
23
24Changes between 2.1.1 and 2.1.2
25----------------------------------------
26
27- fix assertion rewriting on files with windows newlines on some Python versions
28- refine test discovery by package/module name (--pyargs), thanks Florian Mayer
29- fix issue69 / assertion rewriting fixed on some boolean operations
30- fix issue68 / packages now work with assertion rewriting
31- fix issue66: use different assertion rewriting caches when the -O option is passed
32- don't try assertion rewriting on Jython, use reinterp
33
34