2013-12-17 14:58:49 +08:00
|
|
|
pytest-2.5.1: fixes and new home page styling
|
|
|
|
===========================================================================
|
|
|
|
|
2020-07-29 23:19:33 +08:00
|
|
|
pytest is a mature Python testing tool with more than 1000 tests
|
2018-05-18 16:19:46 +08:00
|
|
|
against itself, passing on many different interpreters and platforms.
|
2013-12-17 15:43:01 +08:00
|
|
|
|
|
|
|
The 2.5.1 release maintains the "zero-reported-bugs" promise by fixing
|
|
|
|
the three bugs reported since the last release a few days ago. It also
|
2013-12-17 14:58:49 +08:00
|
|
|
features a new home page styling implemented by Tobias Bieniek, based on
|
2013-12-17 15:43:01 +08:00
|
|
|
the flask theme from Armin Ronacher:
|
2013-12-17 14:58:49 +08:00
|
|
|
|
|
|
|
http://pytest.org
|
|
|
|
|
2018-05-18 16:19:46 +08:00
|
|
|
If you have anything more to improve styling and docs,
|
2013-12-17 14:58:49 +08:00
|
|
|
we'd be very happy to merge further pull requests.
|
|
|
|
|
|
|
|
On the coding side, the release also contains a little enhancement to
|
|
|
|
fixture decorators allowing to directly influence generation of test
|
2018-05-18 16:19:46 +08:00
|
|
|
ids, thanks to Floris Bruynooghe. Other thanks for helping with
|
2013-12-17 15:43:01 +08:00
|
|
|
this release go to Anatoly Bubenkoff and Ronny Pfannschmidt.
|
2013-12-17 14:58:49 +08:00
|
|
|
|
|
|
|
As usual, you can upgrade from pypi via::
|
|
|
|
|
|
|
|
pip install -U pytest
|
|
|
|
|
2013-12-17 15:43:01 +08:00
|
|
|
have fun and a nice remaining "bug-free" time of the year :)
|
2013-12-17 14:58:49 +08:00
|
|
|
holger krekel
|
|
|
|
|
|
|
|
2.5.1
|
|
|
|
-----------------------------------
|
|
|
|
|
|
|
|
- merge new documentation styling PR from Tobias Bieniek.
|
|
|
|
|
|
|
|
- fix issue403: allow parametrize of multiple same-name functions within
|
|
|
|
a collection node. Thanks Andreas Kloeckner and Alex Gaynor for reporting
|
|
|
|
and analysis.
|
|
|
|
|
|
|
|
- Allow parameterized fixtures to specify the ID of the parameters by
|
|
|
|
adding an ids argument to pytest.fixture() and pytest.yield_fixture().
|
2018-05-18 16:19:46 +08:00
|
|
|
Thanks Floris Bruynooghe.
|
2013-12-17 14:58:49 +08:00
|
|
|
|
|
|
|
- fix issue404 by always using the binary xml escape in the junitxml
|
|
|
|
plugin. Thanks Ronny Pfannschmidt.
|
|
|
|
|
|
|
|
- fix issue407: fix addoption docstring to point to argparse instead of
|
|
|
|
optparse. Thanks Daniel D. Wright.
|