1import os 2from test import support 3from test.support import load_package_tests 4from test.support import import_helper 5 6support.requires_working_socket(module=True) 7 8# Skip tests if we don't have concurrent.futures. 9import_helper.import_module('concurrent.futures') 10 11def load_tests(*args): 12 return load_package_tests(os.path.dirname(__file__), *args) 13