Commit c5f68fba by Xavier Ordoquy

Fixed the issue with django-filters / django 1.7 / pytest

parent f22ed49c
......@@ -79,3 +79,9 @@ def pytest_configure():
settings.INSTALLED_APPS += (
'guardian',
)
try:
import django
django.setup()
except AttributeError:
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment