Mark tryfirst/trylast as deprecated in their docs.

Follow-up to #9118
This commit is contained in:
Florian Bruhin 2022-10-07 12:16:53 +02:00
parent 4677580cae
commit 72cac9b1af
1 changed files with 4 additions and 2 deletions

View File

@ -512,12 +512,14 @@ class PytestPluginManager(PluginManager):
config.addinivalue_line(
"markers",
"tryfirst: mark a hook implementation function such that the "
"plugin machinery will try to call it first/as early as possible.",
"plugin machinery will try to call it first/as early as possible. "
"DEPRECATED, use @pytest.hookimpl(tryfirst=True) instead.",
)
config.addinivalue_line(
"markers",
"trylast: mark a hook implementation function such that the "
"plugin machinery will try to call it last/as late as possible.",
"plugin machinery will try to call it last/as late as possible. "
"DEPRECATED, use @pytest.hookimpl(trylast=True) instead.",
)
self._configured = True