summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--passlib/tests/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/passlib/tests/utils.py b/passlib/tests/utils.py
index d2fd6b1..2534050 100644
--- a/passlib/tests/utils.py
+++ b/passlib/tests/utils.py
@@ -367,7 +367,8 @@ class TestCase(_TestCase):
self.addCleanup(ctx.__exit__)
# ignore security warnings, tests may deliberately cause these
- warnings.filterwarnings("ignore", category=exc.PasslibSecurityWarning)
+ # TODO: may want to filter out a few of this, but not blanket filter...
+ # warnings.filterwarnings("ignore", category=exc.PasslibSecurityWarning)
# ignore warnings about PasswordHash features deprecated in 1.7
# TODO: should be cleaned in 2.0, when support will be dropped.