Browse Source

Fix autodoc

Denis K 8 years ago
parent
commit
1fef667c2e
1 changed files with 6 additions and 2 deletions
  1. 6 2
      docs/conf.py

+ 6 - 2
docs/conf.py

@@ -20,8 +20,12 @@ import shlex
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 sys.path.insert(0, os.path.abspath('..'))
-from django.conf import settings
-settings.configure()
+
+# Autodoc may need to import some models modules which require django settings
+# be configured
+os.environ['DJANGO_SETTINGS_MODULE'] = 'jet.tests.settings'
+import django
+django.setup()
 
 # -- General configuration ------------------------------------------------