update to Django 1.7, remove south_migrations, fix tests
This commit is contained in:
parent
d5b0382f88
commit
e73e46da3f
24 changed files with 297 additions and 1366 deletions
|
@ -199,6 +199,11 @@ ROOT_URLCONF = '%s.urls' % SITE_NAME
|
|||
########## END URL CONFIGURATION
|
||||
|
||||
|
||||
########## TEST RUNNER CONFIGURATION
|
||||
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
||||
########## END TEST RUNNER CONFIGURATION
|
||||
|
||||
|
||||
########## APP CONFIGURATION
|
||||
DJANGO_APPS = (
|
||||
# Default Django apps:
|
||||
|
@ -268,17 +273,6 @@ WSGI_APPLICATION = '%s.wsgi.application' % SITE_NAME
|
|||
########## END WSGI CONFIGURATION
|
||||
|
||||
|
||||
########## SOUTH CONFIGURATION
|
||||
# See: http://south.readthedocs.org/en/latest/installation.html#configuring-your-django-installation
|
||||
INSTALLED_APPS += (
|
||||
# Database migration helpers:
|
||||
'south',
|
||||
)
|
||||
# Don't need to use South when setting up a test database.
|
||||
SOUTH_TESTS_MIGRATE = False
|
||||
########## END SOUTH CONFIGURATION
|
||||
|
||||
|
||||
########## CELERY CONFIGURATION
|
||||
BROKER_URL = get_env_variable('GVA_BROKER_URL')
|
||||
CELERY_RESULT_BACKEND = 'amqp'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue