File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77* Add hint to error message hinting possible missing ``__init__.py `` (`#478 `_). Thanks `@DuncanBetts `_.
88
9+ * More accurately describe when fixture finalization occurs in documentation (`#687 `_). Thanks `@DuncanBetts `_.
10+
911* Provide ``:ref: `` targets for ``recwarn.rst `` so we can use intersphinx referencing.
1012 Thanks to `@dupuy `_ for the report and `@lwm `_ for the PR.
1113
3436
3537.. _#2089 : https://github.com/pytest-dev/pytest/issues/2089
3638.. _#478 : https://github.com/pytest-dev/pytest/issues/478
39+ .. _#687 : https://github.com/pytest-dev/pytest/issues/687
3740.. _#2034 : https://github.com/pytest-dev/pytest/issues/2034
3841.. _#2038 : https://github.com/pytest-dev/pytest/issues/2038
3942.. _#2078 : https://github.com/pytest-dev/pytest/issues/2078
Original file line number Diff line number Diff line change @@ -318,8 +318,7 @@ the ``with`` statement ends.
318318 request.addfinalizer(fin)
319319 return smtp # provide the fixture value
320320
321- The ``fin `` function will execute when the last test using
322- the fixture in the module has finished execution.
321+ The ``fin `` function will execute when the last test in the module has finished execution.
323322
324323 This method is still fully supported, but ``yield `` is recommended from 2.10 onward because
325324 it is considered simpler and better describes the natural code flow.
You can’t perform that action at this time.
0 commit comments