summaryrefslogtreecommitdiffstats
path: root/chromium/testing/unexpected_passes_common/constants.py
blob: d46aa795d2a26da54850512aa2c5cd87c511d661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Constants for unexpected pass finders."""

import os

CHROMIUM_SRC_DIR = os.path.realpath(
    os.path.join(os.path.dirname(__file__), '..', '..'))
SRC_INTERNAL_DIR = os.path.realpath(
    os.path.join(CHROMIUM_SRC_DIR, 'internal'))


# pylint: disable=useless-object-inheritance
class BuilderTypes(object):
  CI = 'ci'
  TRY = 'try'