Avoid certain DeprecationWarnings during manage.py test

- Legacy-Id: 1752
This commit is contained in:
Pasi Eronen 2009-10-28 10:07:11 +00:00
parent 281751c3c3
commit 244ee538bc

View file

@ -1,6 +1,13 @@
#!/usr/bin/env python
# Copyright The IETF Trust 2007, All Rights Reserved
# Don't complain about these DeprecationWarnings (we still
# want to see others, though)
import warnings
warnings.filterwarnings("ignore", message="the sets module is deprecated")
warnings.filterwarnings("ignore", message="the md5 module is deprecated; use hashlib instead")
warnings.filterwarnings("ignore", message="the sha module is deprecated; use the hashlib module instead")
from django.core.management import execute_manager
try:
import settings # Assumed to be in the same directory.