From d6d8d5b9d1198d11e068d99b027c8d8e30bf0afd Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Thu, 30 Apr 2015 22:54:43 +0100 Subject: [PATCH] Prepare docs for bugfix release --HG-- branch : pytest-2.7 --- doc/en/announce/index.txt | 2 ++ doc/en/announce/release-2.7.1.txt | 58 +++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 doc/en/announce/release-2.7.1.txt diff --git a/doc/en/announce/index.txt b/doc/en/announce/index.txt index 244bc834f..884308a7f 100644 --- a/doc/en/announce/index.txt +++ b/doc/en/announce/index.txt @@ -5,6 +5,8 @@ Release announcements .. toctree:: :maxdepth: 2 + release-2.7.1 + release-2.7.0 release-2.6.3 release-2.6.2 release-2.6.1 diff --git a/doc/en/announce/release-2.7.1.txt b/doc/en/announce/release-2.7.1.txt new file mode 100644 index 000000000..cd37cad0c --- /dev/null +++ b/doc/en/announce/release-2.7.1.txt @@ -0,0 +1,58 @@ +pytest-2.7.1: bug fixes +======================= + +pytest is a mature Python testing tool with more than a 1100 tests +against itself, passing on many different interpreters and platforms. +This release is supposed to be drop-in compatible to 2.7.0. + +See below for the changes and see docs at: + + http://pytest.org + +As usual, you can upgrade from pypi via:: + + pip install -U pytest + +Thanks to all who contributed to this release, among them: + + Bruno Oliveira + Holger Krekel + Ionel Maries Cristian + Floris Bruynooghe + +Happy testing, +The py.test Development Team + + +2.7.1 (compared to 2.7.0) +------------------------- + +- fix issue731: do not get confused by the braces which may be present + and unbalanced in an object's repr while collapsing False + explanations. Thanks Carl Meyer for the report and test case. + +- fix issue553: properly handling inspect.getsourcelines failures in + FixtureLookupError which would lead to to an internal error, + obfuscating the original problem. Thanks talljosh for initial + diagnose/patch and Bruno Oliveira for final patch. + +- fix issue660: properly report scope-mismatch-access errors + independently from ordering of fixture arguments. Also + avoid the pytest internal traceback which does not provide + information to the user. Thanks Holger Krekel. + +- streamlined and documented release process. Also all versions + (in setup.py and documentation generation) are now read + from _pytest/__init__.py. Thanks Holger Krekel. + +- fixed docs to remove the notion that yield-fixtures are experimental. + They are here to stay :) Thanks Bruno Oliveira. + +- Support building wheels by using environment markers for the + requirements. Thanks Ionel Maries Cristian. + +- fixed regression to 2.6.4 which surfaced e.g. in lost stdout capture printing + when tests raised SystemExit. Thanks Holger Krekel. + +- reintroduced _pytest fixture of the pytester plugin which is used + at least by pytest-xdist.