File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -512,12 +512,14 @@ def pytest_configure(self, config: "Config") -> None:
512
512
config .addinivalue_line (
513
513
"markers" ,
514
514
"tryfirst: mark a hook implementation function such that the "
515
- "plugin machinery will try to call it first/as early as possible." ,
515
+ "plugin machinery will try to call it first/as early as possible. "
516
+ "DEPRECATED, use @pytest.hookimpl(tryfirst=True) instead." ,
516
517
)
517
518
config .addinivalue_line (
518
519
"markers" ,
519
520
"trylast: mark a hook implementation function such that the "
520
- "plugin machinery will try to call it last/as late as possible." ,
521
+ "plugin machinery will try to call it last/as late as possible. "
522
+ "DEPRECATED, use @pytest.hookimpl(trylast=True) instead." ,
521
523
)
522
524
self ._configured = True
523
525
You can’t perform that action at this time.
0 commit comments