You can put your stuff in other modules and reference them using a pytest_plugins variable in your conftest.py:
pytest_plugins = ['module1', 'module2']
This will also work if your conftest.py has hooks on them.
You can put your stuff in other modules and reference them using a pytest_plugins variable in your conftest.py:
pytest_plugins = ['module1', 'module2']
This will also work if your conftest.py has hooks on them.