You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
569 B
11 lines
569 B
7 months ago
|
|
||
|
from autotest_lib.client.common_lib import autotest_enum
|
||
|
|
||
|
# We include a 'Default' level just below what BVT will run at so that when
|
||
|
# the priority rework code is rolled out, any code that doesn't specify a
|
||
|
# priority, such as suites on old branches, will inherit a priority that makes
|
||
|
# them a best effort without lengthening important build processes.
|
||
|
Priority = autotest_enum.AutotestEnum('Weekly', 'Daily', 'PostBuild', 'Default',
|
||
|
'Build', 'PFQ', 'CQ', 'Super',
|
||
|
start_value=10, step=10)
|