aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorBill Prin <waprin@gmail.com>2016-07-26 12:04:48 -0700
committerJon Wayne Parrott <jonwayne@google.com>2016-07-26 12:04:48 -0700
commit25165adbc18101567ac0b75b086a072745b07f41 (patch)
tree828e1c431dc068628cc6f0347befe4ffd971fee6 /docs/conf.py
parent3ba3c60b3eab5939c78d872362aef4e2052cc8b9 (diff)
downloadoauth2client-25165adbc18101567ac0b75b086a072745b07f41.tar.gz
Refactor Django helpers (#546)
* Move all Django code into contrib.django_util. * Add DjangORMStorage. This is backwards compatible with old django_orm storage. * Add new functionality to decorators and views that integrate with Django ORM-based storage. * Fix issue where Django storage always creates new Models. * Move tests into Django package and have them create an actual test app to create test databases etc. * Remove FlowField.
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 85077e1..1b4663b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -12,7 +12,7 @@ import sys
# settings module and load it. This assumes django has been installed
# (but it must be for the docs to build), so if it has not already
# been installed run `pip install -r docs/requirements.txt`.
-os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.contrib.test_django_settings'
+os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.contrib.django_util.settings'
import django
import mock
from pkg_resources import get_distribution