diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6ef104e5f..f0885ac67 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,44 @@ .. towncrier release notes start +Pytest 3.4.2 (2018-03-04) +========================= + +Bug Fixes +--------- + +- Removed progress information when capture option is ``no``. (`#3203 + `_) + +- Refactor check of bindir from ``exists`` to ``isdir`` regarding `#3241 + `_. (`#3241 + `_) + +- Fix ``TypeError`` issue when using ``approx`` with a ``Decimal`` value. + (`#3247 `_) + +- Fix reference cycle generated when using the ``request`` fixture. (`#3249 + `_) + +- ``[tool:pytest]`` sections in ``*.cfg`` files passed by the ``-c`` option are + now properly recognized. (`#3260 + `_) + + +Improved Documentation +---------------------- + +- Add logging plugin to plugins list. (`#3209 + `_) + + +Trivial/Internal Changes +------------------------ + +- Fix minor typo in fixture.rst (`#3259 + `_) + + Pytest 3.4.1 (2018-02-20) ========================= diff --git a/changelog/3203.bugfix.rst b/changelog/3203.bugfix.rst deleted file mode 100644 index 88f357722..000000000 --- a/changelog/3203.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Removed progress information when capture option is ``no``. diff --git a/changelog/3209.doc.rst b/changelog/3209.doc.rst deleted file mode 100644 index 84e165805..000000000 --- a/changelog/3209.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Add logging plugin to plugins list. \ No newline at end of file diff --git a/changelog/3241.bugfix.rst b/changelog/3241.bugfix.rst deleted file mode 100644 index 2b8b07d83..000000000 --- a/changelog/3241.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Refactor check of bindir from ``exists`` to ``isdir`` regarding `#3241 `_. - diff --git a/changelog/3247.bugfix.rst b/changelog/3247.bugfix.rst deleted file mode 100644 index 9483ceeea..000000000 --- a/changelog/3247.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``TypeError`` issue when using ``approx`` with a ``Decimal`` value. diff --git a/changelog/3249.bugfix.rst b/changelog/3249.bugfix.rst deleted file mode 100644 index 38fa9179f..000000000 --- a/changelog/3249.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix reference cycle generated when using the ``request`` fixture. diff --git a/changelog/3259.trivial b/changelog/3259.trivial deleted file mode 100644 index 5b5141301..000000000 --- a/changelog/3259.trivial +++ /dev/null @@ -1 +0,0 @@ -Fix minor typo in fixture.rst diff --git a/changelog/3260.bugfix.rst b/changelog/3260.bugfix.rst deleted file mode 100644 index eb0ecd345..000000000 --- a/changelog/3260.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -``[tool:pytest]`` sections in ``*.cfg`` files passed by the ``-c`` option are now properly recognized. diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index b130f52bd..579214101 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -6,6 +6,7 @@ Release announcements :maxdepth: 2 + release-3.4.2 release-3.4.1 release-3.4.0 release-3.3.2 diff --git a/doc/en/announce/release-3.4.2.rst b/doc/en/announce/release-3.4.2.rst new file mode 100644 index 000000000..59bbf6191 --- /dev/null +++ b/doc/en/announce/release-3.4.2.rst @@ -0,0 +1,28 @@ +pytest-3.4.2 +======================================= + +pytest 3.4.2 has just been released to PyPI. + +This is a bug-fix release, being a drop-in replacement. To upgrade:: + + pip install --upgrade pytest + +The full changelog is available at http://doc.pytest.org/en/latest/changelog.html. + +Thanks to all who contributed to this release, among them: + +* Allan Feldman +* Bruno Oliveira +* Florian Bruhin +* Jason R. Coombs +* Kyle Altendorf +* Maik Figura +* Ronny Pfannschmidt +* codetriage-readme-bot +* feuillemorte +* joshm91 +* mike + + +Happy testing, +The pytest Development Team diff --git a/doc/en/example/reportingdemo.rst b/doc/en/example/reportingdemo.rst index eb60bf85e..55626b257 100644 --- a/doc/en/example/reportingdemo.rst +++ b/doc/en/example/reportingdemo.rst @@ -358,7 +358,7 @@ get on the terminal - we are working on that):: > int(s) E ValueError: invalid literal for int() with base 10: 'qwe' - <0-codegen $PYTHON_PREFIX/lib/python3.5/site-packages/_pytest/python_api.py:583>:1: ValueError + <0-codegen $PYTHON_PREFIX/lib/python3.5/site-packages/_pytest/python_api.py:595>:1: ValueError ______________________ TestRaises.test_raises_doesnt _______________________ self =