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