1# Author: Collin Winter
2
3import os
4import warnings
5
6from test.support import load_package_tests
7
8def load_tests(*args):
9    with warnings.catch_warnings():
10        warnings.filterwarnings('ignore', category=DeprecationWarning, message='lib2to3')
11        return load_package_tests(os.path.dirname(__file__), *args)
12