aboutsummaryrefslogtreecommitdiff
path: root/catapult/common/py_utils/py_utils/constants/exit_codes.py
blob: 9eaac5c6b6507b26af182417869993f14990ac32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Lint as: python3
"""Common exit codes for catapult tools."""

SUCCESS = 0
TEST_FAILURE = 1
FATAL_ERROR = 2
# See crbug.com/1019139#c8 for history on this exit code.
# Note that some test runners (for example: typ) may continue to return SUCCESS
# for cases where all tests are skipped.
ALL_TESTS_SKIPPED = 111