example: silence Django 1.7 system check

fix_request_path_info
Diederik van der Boor 2014-10-14 16:28:01 +02:00
parent e9e4719fd3
commit 454ecb344a
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import django
import os import os
DEBUG = True DEBUG = True
@ -74,6 +75,9 @@ INSTALLED_APPS = (
'pexp', # this Django app is for testing and experimentation; not needed otherwise 'pexp', # this Django app is for testing and experimentation; not needed otherwise
) )
if django.VERSION >= (1,7):
TEST_RUNNER = 'django.test.runner.DiscoverRunner' # silence system checks
# Logging configuration # Logging configuration
LOGGING = { LOGGING = {
'version': 1, 'version': 1,