The pytest docs (https://pytest.org/latest/goodpractises.html) advice to not put an __init__.py file into the tests directory:
avoid “init.py” files in your test directories. This way your tests can run easily against an installed version of mypkg, independently from the installed package if it contains the tests or not.
The pytest docs (https://pytest.org/latest/goodpractises.html) advice to not put an
__init__.pyfile into the tests directory: