Improve changelog note about markers
Also changed the title in the docs because the previous title had the same level as the title, making it appear in a separate entry in `contents.rst`
This commit is contained in:
parent
5ba0663827
commit
ccaa979f27
|
@ -1 +1,3 @@
|
||||||
introduce correct per node mark handling and deprecate the always incorrect existing mark handling
|
Revamp the internals of the ``pytest.mark`` implementation with correct per node handling and introduce a new ``Node.iter_markers``
|
||||||
|
API for mark iteration over nodes which fixes a number of long standing bugs caused by the old approach. More details can be
|
||||||
|
found in `the marks documentation <https://docs.pytest.org/en/latest/mark.html#marker-revamp-and-iteration>`_.
|
||||||
|
|
|
@ -15,12 +15,12 @@ Full pytest documentation
|
||||||
existingtestsuite
|
existingtestsuite
|
||||||
assert
|
assert
|
||||||
fixture
|
fixture
|
||||||
|
mark
|
||||||
monkeypatch
|
monkeypatch
|
||||||
tmpdir
|
tmpdir
|
||||||
capture
|
capture
|
||||||
warnings
|
warnings
|
||||||
doctest
|
doctest
|
||||||
mark
|
|
||||||
skipping
|
skipping
|
||||||
parametrize
|
parametrize
|
||||||
cache
|
cache
|
||||||
|
|
|
@ -34,8 +34,8 @@ which also serve as documentation.
|
||||||
|
|
||||||
.. `marker-iteration`
|
.. `marker-iteration`
|
||||||
|
|
||||||
Marker iteration
|
Marker revamp and iteration
|
||||||
=================
|
---------------------------
|
||||||
|
|
||||||
.. versionadded:: 3.6
|
.. versionadded:: 3.6
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue