# Copyright (c) 2012 The Chromium OS Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
"""Module containing the constants to be reused throughout suite_scheduler.""" | |
class Labels: | |
"""Constants related to label names. | |
@var BOARD_PREFIX The string with which board labels are prefixed. | |
@var POOL_PREFIX The stright with which pool labels are prefixed.""" | |
BOARD_PREFIX = 'board:' | |
POOL_PREFIX = 'pool:' |