aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_apis.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2015-01-31 11:55:37 -0500
committerWaylan Limberg <waylan.limberg@icloud.com>2015-01-31 11:55:37 -0500
commit17123eaf6eb72a60bf6c5b8a1ad0457187387879 (patch)
tree1c6b67e69dd0d72f8dfebb7cd7d8f6b86d69f22d /tests/test_apis.py
parent3cfa02a3e7ad4b6d565097eda6328230fbb92441 (diff)
downloadmarkdown-17123eaf6eb72a60bf6c5b8a1ad0457187387879.tar.gz
markdown-17123eaf6eb72a60bf6c5b8a1ad0457187387879.tar.bz2
markdown-17123eaf6eb72a60bf6c5b8a1ad0457187387879.zip
Only log warnings from commandline script.
I need to remember this is a lib first and not configure logging from within the lib. Also, from the script we are now actually displaying deprecation warnings. For some reason I don't understnad deprecation warnings are hidden by default in Python. And who remembers to run Python with the `-Wd` flag every time they upgrade a lib just to make sure there's no new deprecations? Fixes #384.
Diffstat (limited to 'tests/test_apis.py')
-rw-r--r--tests/test_apis.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_apis.py b/tests/test_apis.py
index 4ed2990..e3de779 100644
--- a/tests/test_apis.py
+++ b/tests/test_apis.py
@@ -15,7 +15,7 @@ import types
import markdown
import warnings
from markdown.__main__ import parse_options
-from logging import DEBUG, INFO, CRITICAL
+from logging import DEBUG, WARNING, CRITICAL
import yaml
import tempfile
@@ -613,7 +613,6 @@ class TestCliOptionParsing(unittest.TestCase):
'input': None,
'output': None,
'encoding': None,
- 'safe_mode': False,
'output_format': 'xhtml1',
'lazy_ol': True,
'extensions': [],
@@ -636,7 +635,7 @@ class TestCliOptionParsing(unittest.TestCase):
def testVerboseOption(self):
options, logging_level = parse_options(['-v'])
- self.assertEqual(logging_level, INFO)
+ self.assertEqual(logging_level, WARNING)
def testNoisyOption(self):
options, logging_level = parse_options(['--noisy'])