In pytest, what is the use of conftest.py files?
问题 I recently discovered pytest . It seems great. However, I feel the documentation could be better. I\'m trying to understand what conftest.py files are meant to be used for. In my (currently small) test suite I have one conftest.py file at the project root. I use it to define the fixtures that I inject into my tests. I have two questions: Is this the correct use of conftest.py ? Does it have other uses? Can I have more than one conftest.py file? When would I want to do that? Examples will be