2011-10-19 02:07:45 +08:00
|
|
|
py.test 2.1.3: just some more fixes
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
pytest-2.1.3 is a minor backward compatible maintenance release of the
|
|
|
|
popular py.test testing tool. It is commonly used for unit, functional-
|
|
|
|
and integration testing. See extensive docs with examples here:
|
|
|
|
|
|
|
|
http://pytest.org/
|
|
|
|
|
|
|
|
The release contains another fix to the perfected assertions introduced
|
|
|
|
with the 2.1 series as well as the new possibility to customize reporting
|
2018-05-18 16:19:46 +08:00
|
|
|
for assertion expressions on a per-directory level.
|
2011-10-19 02:07:45 +08:00
|
|
|
|
|
|
|
If you want to install or upgrade pytest, just type one of::
|
|
|
|
|
|
|
|
pip install -U pytest # or
|
|
|
|
easy_install -U pytest
|
|
|
|
|
|
|
|
Thanks to the bug reporters and to Ronny Pfannschmidt, Benjamin Peterson
|
2011-10-19 02:58:19 +08:00
|
|
|
and Floris Bruynooghe who implemented the fixes.
|
2011-10-19 02:07:45 +08:00
|
|
|
|
|
|
|
best,
|
|
|
|
holger krekel
|
|
|
|
|
|
|
|
Changes between 2.1.2 and 2.1.3
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
- fix issue79: assertion rewriting failed on some comparisons in boolops,
|
|
|
|
- correctly handle zero length arguments (a la pytest '')
|
|
|
|
- fix issue67 / junitxml now contains correct test durations
|
|
|
|
- fix issue75 / skipping test failure on jython
|
|
|
|
- fix issue77 / Allow assertrepr_compare hook to apply to a subset of tests
|