Browse Source

fix non-passing tests for logging on pytest > 3.3.0

pull/2554/head
Camilo 7 years ago
parent
commit
e30c39fe78
  1. 6
      tests/test_logging.py

6
tests/test_logging.py

@ -17,6 +17,10 @@ def reset_logging(monkeypatch):
logger.handlers = []
logger.setLevel(logging.NOTSET)
logging_plugin = pytest.config.pluginmanager.getplugin('logging-plugin')
pytest.config.pluginmanager.unregister(name='logging-plugin')
logging.root.handlers = []
yield
logging.root.handlers[:] = root_handlers
@ -25,6 +29,8 @@ def reset_logging(monkeypatch):
logger.handlers = []
logger.setLevel(logging.NOTSET)
pytest.config.pluginmanager.register(logging_plugin, 'logging-plugin')
def test_logger(app):
assert app.logger.name == 'flask.app'

Loading…
Cancel
Save