Index: build/android/pylib/gtest/setup.py |
diff --git a/build/android/pylib/gtest/setup.py b/build/android/pylib/gtest/setup.py |
index 5d3c2c78a7c59bafe257382a373c32dabca66dc8..090a20ea02269bb3dde9830343e750e04dd54d9b 100644 |
--- a/build/android/pylib/gtest/setup.py |
+++ b/build/android/pylib/gtest/setup.py |
@@ -3,6 +3,7 @@ |
# found in the LICENSE file. |
"""Generates test runner factory and tests for GTests.""" |
+# pylint: disable=W0212 |
import fnmatch |
import glob |
@@ -14,16 +15,15 @@ import sys |
from pylib import android_commands |
from pylib import cmd_helper |
from pylib import constants |
-from pylib import ports |
-import test_package_apk |
-import test_package_exe |
-import test_runner |
+from pylib.gtest import test_package_apk |
+from pylib.gtest import test_package_exe |
+from pylib.gtest import test_runner |
sys.path.insert(0, |
os.path.join(constants.DIR_SOURCE_ROOT, 'build', 'util', 'lib', |
'common')) |
-import unittest_util |
+import unittest_util # pylint: disable=F0401 |
_ISOLATE_FILE_PATHS = { |
@@ -63,8 +63,8 @@ _WEBRTC_ISOLATE_FILE_PATHS = { |
} |
# Append the WebRTC tests with the full path from Chromium's src/ root. |
-for test, isolate_path in _WEBRTC_ISOLATE_FILE_PATHS.items(): |
- _ISOLATE_FILE_PATHS[test] = 'third_party/webrtc/%s' % isolate_path |
+for webrtc_test, isolate_path in _WEBRTC_ISOLATE_FILE_PATHS.items(): |
+ _ISOLATE_FILE_PATHS[webrtc_test] = 'third_party/webrtc/%s' % isolate_path |
# Used for filtering large data deps at a finer grain than what's allowed in |
# isolate files since pushing deps to devices is expensive. |
@@ -300,7 +300,7 @@ def Setup(test_options, devices): |
_GenerateDepsDirUsingIsolate(test_options.suite_name) |
# Constructs a new TestRunner with the current options. |
- def TestRunnerFactory(device, shard_index): |
+ def TestRunnerFactory(device, _shard_index): |
return test_runner.TestRunner( |
test_options, |
device, |