Skip to content
Snippets Groups Projects
test.py 291 B
Newer Older
  • Learn to ignore specific revisions
  • from .base import *  # noqa
    
    
    # Should only include explicit testing settings
    
    SECRET_KEY = 'NOT A SECRET'
    
    # Need this to ensure white noise doesn't kill the speed of testing
    # http://whitenoise.evans.io/en/latest/django.html#whitenoise-makes-my-tests-run-slow
    WHITENOISE_AUTOREFRESH = True