diff options
Diffstat (limited to 'test/__init__.py')
-rw-r--r-- | test/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 00000000..fdb35964 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1,8 @@ + +# 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) |