blob: 93a7f5acf0ebce262661500b0fc4d755f8b166a4 [file] [log] [blame]
# -*- coding: utf-8 -*-
# Copyright 2020 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.
from database_models.common import enum
class Constants:
# Common enums for Job attributes
REBOOT_BEFORE = enum.Enum("Never", "If dirty", "Always")
REBOOT_AFTER = enum.Enum("Never", "If all tests passed", "Always")