1pytest-2.5.1: fixes and new home page styling
2===========================================================================
3
4pytest is a mature Python testing tool with more than a 1000 tests
5against itself, passing on many different interpreters and platforms.
6
7The 2.5.1 release maintains the "zero-reported-bugs" promise by fixing
8the three bugs reported since the last release a few days ago.  It also
9features a new home page styling implemented by Tobias Bieniek, based on
10the flask theme from Armin Ronacher:
11
12    http://pytest.org
13
14If you have anything more to improve styling and docs,
15we'd be very happy to merge further pull requests.
16
17On the coding side, the release also contains a little enhancement to
18fixture decorators allowing to directly influence generation of test
19ids, thanks to Floris Bruynooghe.  Other thanks for helping with
20this release go to Anatoly Bubenkoff and Ronny Pfannschmidt.
21
22As usual, you can upgrade from pypi via::
23
24    pip install -U pytest
25
26have fun and a nice remaining "bug-free" time of the year :)
27holger krekel
28
292.5.1
30-----------------------------------
31
32- merge new documentation styling PR from Tobias Bieniek.
33
34- fix issue403: allow parametrize of multiple same-name functions within
35  a collection node.  Thanks Andreas Kloeckner and Alex Gaynor for reporting
36  and analysis.
37
38- Allow parameterized fixtures to specify the ID of the parameters by
39  adding an ids argument to pytest.fixture() and pytest.yield_fixture().
40  Thanks Floris Bruynooghe.
41
42- fix issue404 by always using the binary xml escape in the junitxml
43  plugin.  Thanks Ronny Pfannschmidt.
44
45- fix issue407: fix addoption docstring to point to argparse instead of
46  optparse. Thanks Daniel D. Wright.
47
48