From b7459b8a64e03e3d35ede8026b937d9c6e6ddf90 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sun, 6 Dec 2015 16:46:44 +0100 Subject: [PATCH] finish release announcement --- doc/en/announce/index.rst | 2 ++ doc/en/announce/release-2.8.4.rst | 52 +++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 doc/en/announce/release-2.8.4.rst diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 00a40308d..90da44dee 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -5,6 +5,8 @@ Release announcements .. toctree:: :maxdepth: 2 + + release-2.8.4 release-2.8.3 release-2.8.2 release-2.7.2 diff --git a/doc/en/announce/release-2.8.4.rst b/doc/en/announce/release-2.8.4.rst new file mode 100644 index 000000000..c3781269b --- /dev/null +++ b/doc/en/announce/release-2.8.4.rst @@ -0,0 +1,52 @@ +pytest-2.8.3 +============ + +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.8.2. + +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 + Florian Bruhin + Jeff Widman + Mehdy Khoshnoody + Nicholas Chammas + Ronny Pfannschmidt + Tim Chan + + +Happy testing, +The py.test Development Team + + +2.8.4 (compared to 2.8.3) +----------------------------- + +- fix #1190: ``deprecated_call()`` now works when the deprecated + function has been already called by another test in the same + module. Thanks Mikhail Chernykh for the report and Bruno Oliveira for the + PR. + +- fix #1198: ``--pastebin`` option now works on Python 3. Thanks + Mehdy Khoshnoody for the PR. + +- fix #1219: ``--pastebin`` now works correctly when captured output contains + non-ascii characters. Thanks Bruno Oliveira for the PR. + +- fix #1204: another error when collecting with a nasty __getattr__(). + Thanks Florian Bruhin for the PR. + +- fix the summary printed when no tests did run. + Thanks Florian Bruhin for the PR. + +- a number of documentation modernizations wrt good practices. + Thanks Bruno Oliveira for the PR.