17db96d56Sopenharmony_ciimport os
27db96d56Sopenharmony_cifrom test import support
37db96d56Sopenharmony_cifrom test.support import load_package_tests
47db96d56Sopenharmony_cifrom test.support import import_helper
57db96d56Sopenharmony_ci
67db96d56Sopenharmony_cisupport.requires_working_socket(module=True)
77db96d56Sopenharmony_ci
87db96d56Sopenharmony_ci# Skip tests if we don't have concurrent.futures.
97db96d56Sopenharmony_ciimport_helper.import_module('concurrent.futures')
107db96d56Sopenharmony_ci
117db96d56Sopenharmony_cidef load_tests(*args):
127db96d56Sopenharmony_ci    return load_package_tests(os.path.dirname(__file__), *args)
13