1import os 2 3from test.support import load_package_tests 4 5# Load all tests in package 6def load_tests(*args): 7 return load_package_tests(os.path.dirname(__file__), *args) 8