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