From: Torsten Werner Date: Sun, 9 Jan 2011 20:42:03 +0000 (+0100) Subject: disable warnings in base_test instead of test_all X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=650daaa79f35a45e28c9cc651dc3bca11dfe5090;hp=ae65107dcc00f49c32e7a57f5840c7698b35cc9e;p=dak.git disable warnings in base_test instead of test_all Signed-off-by: Torsten Werner --- diff --git a/tests/base_test.py b/tests/base_test.py index d99ce416..dc606cc7 100644 --- a/tests/base_test.py +++ b/tests/base_test.py @@ -1,11 +1,27 @@ import os import sys import unittest +import warnings from os.path import abspath, dirname, join DAK_ROOT_DIR = dirname(dirname(abspath(__file__))) +# suppress some deprecation warnings in squeeze related to apt_pkg, +# debian, and md5 modules +warnings.filterwarnings('ignore', \ + "Attribute '.*' of the 'apt_pkg\.Configuration' object is deprecated, use '.*' instead\.", \ + DeprecationWarning) +warnings.filterwarnings('ignore', \ + "apt_pkg\.newConfiguration\(\) is deprecated\. Use apt_pkg\.Configuration\(\) instead\.", \ + DeprecationWarning) +warnings.filterwarnings('ignore', \ + "please use 'debian' instead of 'debian_bundle'", \ + DeprecationWarning) +warnings.filterwarnings('ignore', \ + "the md5 module is deprecated; use hashlib instead", \ + DeprecationWarning) + class DakTestCase(unittest.TestCase): def setUp(self): pass diff --git a/tests/test_all.py b/tests/test_all.py index 94b89c43..32e58aba 100755 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -3,22 +3,6 @@ import os import unittest -import warnings - -# suppress some deprecation warnings in squeeze related to apt_pkg, -# debian, and md5 modules -warnings.filterwarnings('ignore', \ - "Attribute '.*' of the 'apt_pkg\.Configuration' object is deprecated, use '.*' instead\.", \ - DeprecationWarning) -warnings.filterwarnings('ignore', \ - "apt_pkg\.newConfiguration\(\) is deprecated\. Use apt_pkg\.Configuration\(\) instead\.", \ - DeprecationWarning) -warnings.filterwarnings('ignore', \ - "please use 'debian' instead of 'debian_bundle'", \ - DeprecationWarning) -warnings.filterwarnings('ignore', \ - "the md5 module is deprecated; use hashlib instead", \ - DeprecationWarning) def suite(): suite = unittest.TestSuite()