Alex Miller | 511a9e3 | 2012-07-03 09:16:47 -0700 | [diff] [blame^] | 1 | # Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | |
| 6 | """Module containing the constants to be reused throughout suite_scheduler.""" |
| 7 | |
| 8 | |
| 9 | class Labels: |
| 10 | """Constants related to label names. |
| 11 | |
| 12 | @var BOARD_PREFIX The string with which board labels are prefixed. |
| 13 | @var POOL_PREFIX The stright with which pool labels are prefixed.""" |
| 14 | BOARD_PREFIX = 'board:' |
| 15 | POOL_PREFIX = 'pool:' |