moto/tests/__init__.py

9 lines
255 B
Python
Raw Normal View History

from __future__ import unicode_literals
2017-02-15 22:35:45 -05:00
import logging
2019-10-31 08:44:26 -07:00
2017-02-15 22:35:45 -05:00
# Disable extra logging for tests
2019-10-31 08:44:26 -07:00
logging.getLogger("boto").setLevel(logging.CRITICAL)
logging.getLogger("boto3").setLevel(logging.CRITICAL)
logging.getLogger("botocore").setLevel(logging.CRITICAL)