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

Unified Diff: devil/devil/android/device_utils_devicetest.py

Issue 2065163002: [Devil] Run devil real device tests on android devices when available. (Closed) Base URL: git@github.com:catapult-project/catapult@master
Patch Set: Created 4 years, 6 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 | « catapult_build/build_steps.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devil/devil/android/device_utils_devicetest.py
diff --git a/devil/devil/android/device_utils_devicetest.py b/devil/devil/android/device_utils_devicetest.py
index 9a50373823eac327132ed0fa15ea425b9464ce9d..33c1fb934307dd9aa80ea901d36a7b5b4892c481 100755
--- a/devil/devil/android/device_utils_devicetest.py
+++ b/devil/devil/android/device_utils_devicetest.py
@@ -9,9 +9,14 @@ The test will invoke real devices
"""
import os
+import sys
import tempfile
import unittest
+if __name__ == '__main__':
+ sys.path.append(
+ os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', )))
+
from devil.android import device_utils
from devil.android.sdk import adb_wrapper
from devil.utils import cmd_helper
« no previous file with comments | « catapult_build/build_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698