Home | History | Annotate | Download | only in autotest
      1 import os, sys
      2 dirname = os.path.dirname(sys.modules[__name__].__file__)
      3 autotest_dir = os.path.abspath(dirname)
      4 client_dir = os.path.join(autotest_dir, "client")
      5 sys.path.insert(0, client_dir)
      6 import setup_modules
      7 sys.path.pop(0)
      8 setup_modules.setup(base_path=autotest_dir, root_module_name="autotest_lib")
      9