We\'re using flake8
to test our code, and we\'re using pytest
with fixtures. The following code:
from staylists.tests.fixtures impo
There are two "best practices" for sharing fixtures:
conftest
above both test modules
bringing a fixture into a scope via import side-effects will trigger the issues you're seeing and is not recommended