diff --git a/config/settings/local.py b/config/settings/local.py index 7280f1c..ec6dbe5 100644 --- a/config/settings/local.py +++ b/config/settings/local.py @@ -7,6 +7,8 @@ Local settings ''' import warnings +import sys +import logging from .base import * # noqa @@ -26,7 +28,8 @@ TEMPLATES[0]['OPTIONS']['debug'] = DEBUG # ------------------------------------------------------------------------------ # See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key # Note: This key only used for development and testing. -SECRET_KEY = env("DJANGO_SECRET_KEY", default='t69v7lq5ayk^k_)uyvjvpo(sljrcnbh)&$(rsqqjg-87160@^%') +SECRET_KEY = env("DJANGO_SECRET_KEY", + default='t69v7lq5ayk^k_)uyvjvpo(sljrcnbh)&$(rsqqjg-87160@^%') # Mail settings # ------------------------------------------------------------------------------ @@ -58,6 +61,27 @@ DEBUG_TOOLBAR_CONFIG = { # ------------------------------------------------------------------------------ TEST_RUNNER = 'django.test.runner.DiscoverRunner' + +# http://stackoverflow.com/a/28560805/313548 +class DisableMigrations(object): + def __contains__(self, item): + return True + + def __getitem__(self, item): + return "notmigrations" + + +TESTS_IN_PROGRESS = False +if 'test' in sys.argv[1:] or 'jenkins' in sys.argv[1:]: + logging.disable(logging.CRITICAL) + PASSWORD_HASHERS = ( + 'django.contrib.auth.hashers.MD5PasswordHasher', + ) + DEBUG = False + TEMPLATE_DEBUG = False + TESTS_IN_PROGRESS = True + MIGRATION_MODULES = DisableMigrations() + MANIFEST_URL = env('MANIFEST_URL', default=None) CORS_ORIGIN_ALLOW_ALL = True diff --git a/requirements/local.txt b/requirements/local.txt index 14ad7d6..130c874 100644 --- a/requirements/local.txt +++ b/requirements/local.txt @@ -6,5 +6,4 @@ django-extensions==1.6.7 flake8==2.5.4 pygraphviz==1.3.1 ipython==4.2.0 -django-test-without-migrations==0.4 factory-boy==2.7.0