1*9c5db199SXin Li 2*9c5db199SXin Lifrom autotest_lib.client.common_lib import autotest_enum 3*9c5db199SXin Li 4*9c5db199SXin Li# We include a 'Default' level just below what BVT will run at so that when 5*9c5db199SXin Li# the priority rework code is rolled out, any code that doesn't specify a 6*9c5db199SXin Li# priority, such as suites on old branches, will inherit a priority that makes 7*9c5db199SXin Li# them a best effort without lengthening important build processes. 8*9c5db199SXin LiPriority = autotest_enum.AutotestEnum('Weekly', 'Daily', 'PostBuild', 'Default', 9*9c5db199SXin Li 'Build', 'PFQ', 'CQ', 'Super', 10*9c5db199SXin Li start_value=10, step=10) 11