From 01d524adb82303e9db392e7fab9583f884471932 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 3 Sep 2014 15:50:54 +0200 Subject: [PATCH] Setup django on start testrunner. --- tests/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index aab32b9d..b0accc6b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -16,6 +16,9 @@ # along with this program. If not, see . import pytest +import django + +django.setup() from .fixtures import *