summaryrefslogtreecommitdiff
path: root/doc/en/deprecations.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2018-12-20 16:13:43 -0200
committerBruno Oliveira <nicoddemus@gmail.com>2018-12-20 16:16:13 -0200
commitc378cb4793c05cc592ac4132d42dd8c0234d5a65 (patch)
treec6e414831149192706593bb7128203956b78af19 /doc/en/deprecations.rst
parentd888d5c933ab1d5684c89062b0d14887da80f91b (diff)
downloadpytest-c378cb4793c05cc592ac4132d42dd8c0234d5a65.tar.gz
Remove support for applying marks to values in parametrize
Fix #3082
Diffstat (limited to 'doc/en/deprecations.rst')
-rw-r--r--doc/en/deprecations.rst88
1 files changed, 54 insertions, 34 deletions
diff --git a/doc/en/deprecations.rst b/doc/en/deprecations.rst
index ca95bab38..dc716951b 100644
--- a/doc/en/deprecations.rst
+++ b/doc/en/deprecations.rst
@@ -7,6 +7,11 @@ This page lists all pytest features that are currently deprecated or have been r
The objective is to give users a clear rationale why a certain feature has been removed, and what alternatives
should be used instead.
+.. contents::
+ :depth: 3
+ :local:
+
+
Deprecated Features
-------------------
@@ -81,40 +86,6 @@ As part of a large :ref:`marker-revamp`, :meth:`_pytest.nodes.Node.get_marker` i
:ref:`the documentation <update marker code>` on tips on how to update your code.
-marks in ``pytest.mark.parametrize``
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-.. deprecated:: 3.2
-
-Applying marks to values of a ``pytest.mark.parametrize`` call is now deprecated. For example:
-
-.. code-block:: python
-
- @pytest.mark.parametrize(
- "a, b", [(3, 9), pytest.mark.xfail(reason="flaky")(6, 36), (10, 100)]
- )
- def test_foo(a, b):
- ...
-
-This code applies the ``pytest.mark.xfail(reason="flaky")`` mark to the ``(6, 36)`` value of the above parametrization
-call.
-
-This was considered hard to read and understand, and also its implementation presented problems to the code preventing
-further internal improvements in the marks architecture.
-
-To update the code, use ``pytest.param``:
-
-.. code-block:: python
-
- @pytest.mark.parametrize(
- "a, b",
- [(3, 9), pytest.param((6, 36), marks=pytest.mark.xfail(reason="flaky")), (10, 100)],
- )
- def test_foo(a, b):
- ...
-
-
-
Result log (``--result-log``)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -145,6 +116,55 @@ collection.
This issue should affect only advanced plugins who create new collection types, so if you see this warning
message please contact the authors so they can change the code.
+
+marks in ``pytest.mark.parametrize``
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+*Removed in version 4.0.*
+
+Applying marks to values of a ``pytest.mark.parametrize`` call is now deprecated. For example:
+
+.. code-block:: python
+
+ @pytest.mark.parametrize(
+ "a, b",
+ [
+ (3, 9),
+ pytest.mark.xfail(reason="flaky")(6, 36),
+ (10, 100),
+ (20, 200),
+ (40, 400),
+ (50, 500),
+ ],
+ )
+ def test_foo(a, b):
+ ...
+
+This code applies the ``pytest.mark.xfail(reason="flaky")`` mark to the ``(6, 36)`` value of the above parametrization
+call.
+
+This was considered hard to read and understand, and also its implementation presented problems to the code preventing
+further internal improvements in the marks architecture.
+
+To update the code, use ``pytest.param``:
+
+.. code-block:: python
+
+ @pytest.mark.parametrize(
+ "a, b",
+ [
+ (3, 9),
+ pytest.param(6, 36, marks=pytest.mark.xfail(reason="flaky")),
+ (10, 100),
+ (20, 200),
+ (40, 400),
+ (50, 500),
+ ],
+ )
+ def test_foo(a, b):
+ ...
+
+
``pytest_funcarg__`` prefix
~~~~~~~~~~~~~~~~~~~~~~~~~~~