Reputation: 305
I have structure like this:
conftest.py
dir/conftest.py
dir/test_my.py
When I change directory to dir
and run py.test test_my.py
, my tests start with configuration, declared in the outer conftest.py
(which is out of dir
). Is there any way to change pytest behaviour: to load conftest
-file only from the local directory?
Upvotes: 1
Views: 449
Reputation: 11969
You can set the confcutdir option to specify where pytest should stop searching for conftest.py
files.
Upvotes: 1