7 lines
220 B
Python
7 lines
220 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')
|