aboutsummaryrefslogtreecommitdiff
path: root/catapult/common/battor/bin/run_py_tests
diff options
context:
space:
mode:
Diffstat (limited to 'catapult/common/battor/bin/run_py_tests')
-rwxr-xr-xcatapult/common/battor/bin/run_py_tests23
1 files changed, 0 insertions, 23 deletions
diff --git a/catapult/common/battor/bin/run_py_tests b/catapult/common/battor/bin/run_py_tests
deleted file mode 100755
index 61103bd9..00000000
--- a/catapult/common/battor/bin/run_py_tests
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2016 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__), '..', '..', '..'))
-_BATTOR_PATH = os.path.abspath(os.path.join(
- os.path.dirname(__file__), '..'))
-
-sys.path.append(_CATAPULT_PATH)
-from catapult_build import run_with_typ
-
-
-def main():
- return run_with_typ.Run(top_level_dir=_BATTOR_PATH)
-
-
-if __name__ == '__main__':
- sys.exit(main())