11752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller 21752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Millerfrom autotest_lib.client.common_lib import enum 31752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller 41752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller# We include a 'Default' level just below what BVT will run at so that when 51752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller# the priority rework code is rolled out, any code that doesn't specify a 61752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller# priority, such as suites on old branches, will inherit a priority that makes 71752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller# them a best effort without lengthening important build processes. 81752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex MillerPriority = enum.Enum('Weekly', 'Daily', 'PostBuild', 'Default', 'Build', 91752ea1f8b94bdb1979a96fd6767c916dfd03f5eAlex Miller 'PFQ', 'CQ', start_value=10, step=10) 10