You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logan works fine with django 1.8 for our project but we have one problem: pytest.
I'm not sure if this is a problem of pytest but I wanted to ask if anybody is using the combination of py.test and logan and django 1.8. Since the update we have an issue when we run the tests:
ImproperlyConfigured: Requested setting CACHES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
We managed to integrate logan into pytest by defining a conftest.py with the following content:
from logan.runner import configure_app
from myproject.logan_runner import get_logan_kw
configure_app(**get_logan_kw())
But with the new version of either django or pytest or pytest-django something is wrong with the import ordering I guess.
I'm just curious if anybody experienced the same things and has a solution. Again, logan might work fine here so feel free to resolve this issue :)
The text was updated successfully, but these errors were encountered:
Hi everybody,
logan works fine with django 1.8 for our project but we have one problem: pytest.
I'm not sure if this is a problem of pytest but I wanted to ask if anybody is using the combination of py.test and logan and django 1.8. Since the update we have an issue when we run the tests:
We managed to integrate logan into pytest by defining a conftest.py with the following content:
But with the new version of either django or pytest or pytest-django something is wrong with the import ordering I guess.
I'm just curious if anybody experienced the same things and has a solution. Again, logan might work fine here so feel free to resolve this issue :)
The text was updated successfully, but these errors were encountered: