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