Index: build/android/buildbot/bb_device_steps.py |
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py |
index 2e4c42efda56ef7bc5f751fa14599596e568971a..5fbd089a9fb65e4212116573df2938b9baccc449 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -517,7 +517,7 @@ def RunGPUTests(options): |
EscapeBuilderName(builder_name)]) |
-def RunPythonUnitTests(_options): |
+def RunPythonUnitTests(_options): # pylint: disable=unused-argument |
for suite in constants.PYTHON_UNIT_TEST_SUITES: |
bb_annotations.PrintNamedStep(suite) |
RunCmd(['build/android/test_runner.py', 'python', '-s', suite]) |
@@ -724,6 +724,7 @@ def main(argv): |
setattr(options, 'target', options.factory_properties.get('target', 'Debug')) |
+ # pylint: disable=global-statement |
if options.chrome_output_dir: |
global CHROME_OUT_DIR |
perezju
2015/09/04 09:01:53
Is there a reason why we really need this globals?
jbudorick
2015/09/04 16:51:55
No idea. These bb_* scripts are mostly unused with
perezju
2015/09/08 13:40:10
ok, sgtm
|
global LOGCAT_DIR |