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