Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Unified Diff: common/battor/bin/run_py_tests

Issue 1945733002: [Battor] Fix broken BattOr unit tests and set them to run in CQ. (Closed) Base URL: git@github.com:catapult-project/catapult@master
Patch Set: fix whitespace Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « common/battor/battor/battor_wrapper_unittest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common/battor/bin/run_py_tests
diff --git a/devil/bin/run_py_tests b/common/battor/bin/run_py_tests
old mode 100755
new mode 100644
similarity index 73%
copy from devil/bin/run_py_tests
copy to common/battor/bin/run_py_tests
index 44ec61e89f24fdb8d9c4b9525a34a7f036abe640..61103bd9862aa33c01fa78874b35e9b6c70ab1eb
--- a/devil/bin/run_py_tests
+++ b/common/battor/bin/run_py_tests
@@ -7,8 +7,8 @@ import os
import sys
_CATAPULT_PATH = os.path.abspath(os.path.join(
- os.path.dirname(__file__), '..', '..'))
-_DEVIL_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)
@@ -16,7 +16,8 @@ from catapult_build import run_with_typ
def main():
- return run_with_typ.Run(top_level_dir=_DEVIL_PATH)
+ return run_with_typ.Run(top_level_dir=_BATTOR_PATH)
+
if __name__ == '__main__':
sys.exit(main())
« no previous file with comments | « common/battor/battor/battor_wrapper_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698