aboutsummaryrefslogtreecommitdiffstats
path: root/test/__init__.py
blob: 61d03152ddfe0a52d432047ba9e24446b3d7caf4 (plain)
1
2
3
4
5
6
7
8
9
from __future__ import (print_function, absolute_import, division)

# Silence third-party modules
import logging
logging.getLogger("hyper").setLevel(logging.WARNING)
logging.getLogger("requests").setLevel(logging.WARNING)
logging.getLogger("passlib").setLevel(logging.WARNING)
logging.getLogger("PIL").setLevel(logging.WARNING)
logging.getLogger("tornado").setLevel(logging.WARNING)