Default to ERROR logging on tests.

This commit is contained in:
kenkeiras 2017-05-23 23:18:02 +02:00
parent 460ad73bba
commit 586ac76d1f

View File

@ -2,7 +2,7 @@ import logging
from .tests import basic
from .tests import gac_100
logging.getLogger().setLevel(logging.WARNING)
logging.getLogger().setLevel(logging.ERROR)
tests = (
("basic", basic),