forked from orbit-oss/flask
Merge branch 'appdispatch-docs'
This commit is contained in:
commit
dd75cc9e28
3 changed files with 159 additions and 0 deletions
|
|
@ -47,6 +47,10 @@ SECRET_KEY = 'devkey'
|
|||
def catch_warnings():
|
||||
"""Catch warnings in a with block in a list"""
|
||||
import warnings
|
||||
|
||||
# make sure deprecation warnings are active in tests
|
||||
warnings.simplefilter('default', category=DeprecationWarning)
|
||||
|
||||
filters = warnings.filters
|
||||
warnings.filters = filters[:]
|
||||
old_showwarning = warnings.showwarning
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue