help wanted
Description
The recommended Python + Pytest layout is
src/mypkg/__init__.pysubpkg/__init__.py
tests/test_thing.pytest_more/test_other_thing.py
Notably, tests and all files under it aren’t packages. The recommended import mode enforces that you can’t import from them.
Therefore INP001 shouldn’t trigger when tests is on top level of the project.
In fact, it would be great to have both a rule that enforces the opposite and to ensure that tests/**/test_*.py files don’t import things from each other.