Commit 655e85bc by muzaffaryousaf

Removing warning imports.

parent d1854ce6
...@@ -5,7 +5,7 @@ import os ...@@ -5,7 +5,7 @@ import os
if __name__ == "__main__": if __name__ == "__main__":
if os.environ.get('DJANGO_SETTINGS_MODULE') is None: if os.environ.get('DJANGO_SETTINGS_MODULE') is None:
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings.dev' os.environ['DJANGO_SETTINGS_MODULE'] = 'settings.base'
# When using an on-disk database for the test suite, # When using an on-disk database for the test suite,
# Django asks us if we want to delete the database. # Django asks us if we want to delete the database.
......
...@@ -40,11 +40,3 @@ INSTALLED_APPS += ('django_nose',) ...@@ -40,11 +40,3 @@ INSTALLED_APPS += ('django_nose',)
# Store uploaded files in a test-specific directory # Store uploaded files in a test-specific directory
MEDIA_ROOT = os.path.join(BASE_DIR, 'storage/test') MEDIA_ROOT = os.path.join(BASE_DIR, 'storage/test')
SECRET_KEY = ')68&-c!+og)cy$o9pju_$c707+fett&ph%t%gqgu-@5)!cl$cr'
# Silence cache key warnings
# https://docs.djangoproject.com/en/1.4/topics/cache/#cache-key-warnings
import warnings
# from django.core.cache import CacheKeyWarning
# warnings.simplefilter("ignore", CacheKeyWarning)
...@@ -13,5 +13,3 @@ NOSE_ARGS = [ ...@@ -13,5 +13,3 @@ NOSE_ARGS = [
'--cover-branches', '--cover-branches',
'--cover-erase', '--cover-erase',
] ]
SECRET_KEY = ')68&-c!+og)cy$o9pju_$c707+fett&ph%t%gqgu-@5)!cl$cr'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment