blob: 8a41329d545a4d15f958ad07345b7aa3b15bd987 [file] [log] [blame]
Alex Miller1752ea12013-09-04 15:40:22 -07001
2from autotest_lib.client.common_lib import 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 = enum.Enum('Weekly', 'Daily', 'PostBuild', 'Default', 'Build',
xixuan03cb93f2016-03-22 16:21:41 -07009 'PFQ', 'CQ', 'Super', start_value=10, step=10)