From 31ede2432ca1cf35314ad6096f94e1bbdeb92c6b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 19 Aug 2016 17:05:02 +0200 Subject: [PATCH] Remove duplicate CHANGELOG messages Those are both already mentioned in the breaking changes at the top. --- CHANGELOG.rst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71d86a489..337fe511a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -246,12 +246,6 @@ time or change existing behaviors in order to make them less surprising/more use removed in pytest-4.0 (`#1684`_). Thanks `@nicoddemus`_ for the PR. -* Raise helpful failure message, when requesting parametrized fixture at runtime, - e.g. with ``request.getfuncargvalue``. BACKWARD INCOMPAT: Previously these params - were simply never defined. So a fixture decorated like ``@pytest.fixture(params=[0, 1, 2])`` - only ran once. Now a failure is raised. Fixes (`#460`_). Thanks to - `@nikratio`_ for bug report, `@RedBeardCode`_ and `@tomviner`_ for the PR. - * Passing a command-line string to ``pytest.main()`` is considered deprecated and scheduled for removal in pytest-4.0. It is recommended to pass a list of arguments instead (`#1723`_). @@ -273,8 +267,6 @@ time or change existing behaviors in order to make them less surprising/more use Thanks `@bagerard`_ for reporting (`#1503`_). Thanks to `@davehunt`_ and `@tomviner`_ for PR. -* Renamed the pytest ``pdb`` module (plugin) into ``debugging``. - * Better message in case of not using parametrized variable (see `#1539`_). Thanks to `@tramwaj29`_ for the PR.