1import common 2from autotest_lib.client.common_lib import enum 3 4 5# common enums for Job attributes 6RebootBefore = enum.Enum('Never', 'If dirty', 'Always') 7RebootAfter = enum.Enum('Never', 'If all tests passed', 'Always') 8 9 10# common enums for profiler and job parameter types 11ParameterTypes = enum.Enum('int', 'float', 'string', string_values=True) 12