android_mt6572_jiabo/external/autotest/frontend/afe/model_attributes.py
2025-09-05 16:56:03 +08:00

11 lines
347 B
Python

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)