[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] suppress warnings when running tests in squeeze



Signed-off-by: Torsten Werner <twerner@debian.org>
---
 tests/test_all.py |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/tests/test_all.py b/tests/test_all.py
index 32e58ab..94b89c4 100755
--- a/tests/test_all.py
+++ b/tests/test_all.py
@@ -3,6 +3,22 @@
 
 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()
-- 
1.5.6.5



Reply to: