diff --git a/src/_pytest/hookspec.py b/src/_pytest/hookspec.py index 9ec9b3b5e10..b19cd3272a9 100644 --- a/src/_pytest/hookspec.py +++ b/src/_pytest/hookspec.py @@ -310,7 +310,12 @@ def pytest_collection_finish(session: "Session") -> None: def pytest_ignore_collect( collection_path: Path, path: "LEGACY_PATH", config: "Config" ) -> Optional[bool]: - """Return True to prevent considering this path for collection. + """Return ``True`` to ignore this path for collection. + + Return ``None`` to let other plugins ignore the path for collection. + + Returning ``False`` will forcefully *not* ignore this path for collection, + without giving a chance for other plugins to ignore this path. This hook is consulted for all files and directories prior to calling more specific hooks.