Home | History | Annotate | Download | only in afe
      1 import common
      2 from autotest_lib.client.common_lib import enum
      3 
      4 
      5 # common enums for Job attributes
      6 RebootBefore = enum.Enum('Never', 'If dirty', 'Always')
      7 RebootAfter = enum.Enum('Never', 'If all tests passed', 'Always')
      8