aboutsummaryrefslogtreecommitdiff
path: root/catapult/common/bin/run_tests
blob: 632cdbf129afcf7ccf9ca2aa4335c4515c2762d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# Copyright (c) 2015 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.

import os
import sys


_CATAPULT_PATH = os.path.abspath(
    os.path.join(os.path.dirname(__file__), '..', '..'))
_TESTS = [
    {'path': os.path.join(
        _CATAPULT_PATH, 'common', 'eslint', 'bin', 'run_tests')},
    {'path': os.path.join(
        _CATAPULT_PATH, 'common', 'py_trace_event', 'bin', 'run_tests')},
    {'path': os.path.join(
        _CATAPULT_PATH, 'common', 'py_utils', 'bin', 'run_tests')},
    {'path': os.path.join(
        _CATAPULT_PATH, 'common', 'py_vulcanize', 'bin', 'run_py_tests')},
]


if __name__ == '__main__':
  sys.path.append(_CATAPULT_PATH)
  from catapult_build import test_runner
  sys.exit(test_runner.Main('project', _TESTS, sys.argv))