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