Add support for Django 1.10

This commit is contained in:
Iacopo Spalletti 2016-12-03 23:20:00 +01:00
commit 2dff9fb9f3
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
12 changed files with 30 additions and 6 deletions

View file

@ -9,6 +9,7 @@ from tempfile import mkdtemp
def gettext(s): return s
HELPER_SETTINGS = dict(
ROOT_URLCONF='tests.test_utils.urls',
INSTALLED_APPS=[
@ -139,5 +140,6 @@ def setup():
from djangocms_helper import runner
runner.setup('djangocms_blog', sys.modules[__name__], use_cms=True)
if __name__ == '__main__':
run()