Fix docs build

With the updated docs build job, doc building is failing since
DJANGO_SETTINGS_MODULE is not set. Define it properly.

Change-Id: Idc43f59bf6d04705a30c02fd316f50706aacd4ef
(cherry picked from commit a368c4cdf6)
This commit is contained in:
Andreas Jaeger 2018-01-03 11:31:05 +01:00
parent e52f4c15cb
commit 6c70c8ef6b
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@
import os
import sys
# Needs to be set for building documents without tox
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ironic_ui.test.settings')
sys.path.insert(0, os.path.abspath('../..'))
# -- General configuration ----------------------------------------------------