blob: 028c9781e73db412af2116f98c197562b3c4bcd5 [file] [log] [blame]
import common
from autotest_lib.client.common_lib import enum
# common enums for Job attributes
RebootBefore = enum.Enum('Never', 'If dirty', 'Always')
RebootAfter = enum.Enum('Never', 'If all tests passed', 'Always')
# common enums for profiler and job parameter types
ParameterTypes = enum.Enum('int', 'float', 'string', string_values=True)