14 lines
548 B
Python
14 lines
548 B
Python
"""
|
|
Imports everything that should be accessible in control files.
|
|
|
|
Import into the default namespace for easy usage in control files.
|
|
The control files only need to import this file.
|
|
"""
|
|
|
|
from autotest_lib.client.common_lib.cros.cfm.usb.cfm_usb_devices import *
|
|
from autotest_lib.server.cros.cfm.configurable_test.actions import *
|
|
from autotest_lib.server.cros.cfm.configurable_test.cfm_test import *
|
|
from autotest_lib.server.cros.cfm.configurable_test.configuration import *
|
|
from autotest_lib.server.cros.cfm.configurable_test.scenario import *
|
|
|