summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2020-10-07 21:22:08 -0400
committerEli Collins <elic@assurancetechnologies.com>2020-10-07 21:22:08 -0400
commit32a5183450a8d96f15da79f50cb6b0688f7a8f46 (patch)
tree0193169a9d2ce713202c95f77586d70e1f6eaf01
parent7086228eec5138cd40d39e18c7a132b703d07cdc (diff)
downloadpasslib-32a5183450a8d96f15da79f50cb6b0688f7a8f46.tar.gz
bugfix: passlib.tests: revert filtering PasslibSecurityWarning in general;
some tests depend on seeing it. (reverts change from rev be9a9121d5a7)
-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.