Merge pull request #4491 from nicoddemus/removal-links

Add links to the deprecations docs for the "removal" changelog entries
This commit is contained in:
Anthony Sottile 2018-12-01 21:05:32 -08:00 committed by GitHub
commit 4a3c8e22d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View File

@ -1 +1,3 @@
Remove support for yield tests - they are fundamentally broken since collection and test execution were separated.
Remove support for yield tests - they are fundamentally broken because they don't support fixtures properly since collection and test execution were separated.
See our `docs <https://docs.pytest.org/en/latest/deprecations.html#yield-tests>`__ on information on how to update your code.

View File

@ -1 +1,3 @@
Remove the deprecated compat properties for node.Class/Function/Module - use pytest... now.
Remove the deprecated compat properties for ``node.Class/Function/Module`` - use ``pytest.Class/Function/Module`` now.
See our `docs <https://docs.pytest.org/en/latest/deprecations.html#internal-classes-accessed-through-node>`__ on information on how to update your code.

View File

@ -1 +1,3 @@
Remove the implementation of the pytest_namespace hook.
Remove the implementation of the ``pytest_namespace`` hook.
See our `docs <https://docs.pytest.org/en/latest/deprecations.html#pytest-namespace>`__ on information on how to update your code.