Home | History | Annotate | Download | only in templates
      1 # This is meant to run from within a scenario package
      2 import os, sys
      3 dirname = os.path.dirname(sys.modules[__name__].__file__)
      4 autotest_dir = os.path.abspath(os.path.join(dirname, "..", "..", "..", ".."))
      5 client_dir = os.path.join(autotest_dir, "client")
      6 sys.path.insert(0, client_dir)
      7 import setup_modules
      8 sys.path.pop(0)
      9 setup_modules.setup(base_path=autotest_dir, root_module_name="autotest_lib")
     10