19 lines
633 B
Python
19 lines
633 B
Python
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""This module provides access to the autotest_lib.client namespace. It must be
|
|
included before any of the modules from that namespace."""
|
|
|
|
import os, sys
|
|
|
|
dirname = os.path.dirname(sys.modules[__name__].__file__)
|
|
client_dir = os.path.abspath(os.path.join(dirname, os.pardir, os.pardir))
|
|
sys.path.insert(0, client_dir)
|
|
|
|
import setup_modules
|
|
|
|
sys.path.pop(0)
|
|
setup_modules.setup(base_path=client_dir,
|
|
root_module_name="autotest_lib.client")
|