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