2008-03-19 02:04:44 -03:00
|
|
|
# Author: Collin Winter
|
|
|
|
|
|
|
|
import os
|
2022-04-13 11:42:25 -03:00
|
|
|
import warnings
|
2008-03-19 02:04:44 -03:00
|
|
|
|
2014-10-29 14:24:59 -03:00
|
|
|
from test.support import load_package_tests
|
2008-03-19 02:04:44 -03:00
|
|
|
|
2014-10-29 14:24:59 -03:00
|
|
|
def load_tests(*args):
|
2022-04-13 11:42:25 -03:00
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.filterwarnings('ignore', category=DeprecationWarning, message='lib2to3')
|
|
|
|
return load_package_tests(os.path.dirname(__file__), *args)
|