# HG changeset patch # User Julien Cristau # Date 1423745578 -3600 # Node ID fdcc500002ef13d2e3d0e44535ac2c1d6b8f81c8 # Parent b02fbb68ee7a39758b8ccd562fb4fd1ea20fedbb [devtools] don't hide warnings and errors during tests The markdown module in jessie turns all warnings into logging calls, so this allows me to still see deprecation warnings when running tests. diff -r b02fbb68ee7a -r fdcc500002ef devtools/__init__.py --- a/devtools/__init__.py Fri Dec 05 11:25:35 2014 +0100 +++ b/devtools/__init__.py Thu Feb 12 13:52:58 2015 +0100 @@ -251,7 +251,7 @@ skip_db_create_and_restore = False def __init__(self, appid, apphome=None, - log_threshold=logging.CRITICAL, sourcefile=None): + log_threshold=logging.WARNING, sourcefile=None): BaseApptestConfiguration.__init__(self, appid, apphome, log_threshold=log_threshold) self.init_repository = sourcefile is None