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

Unified Diff: build/android/pylib/perf/setup.py

Issue 153743008: Revert of Enable presubmit pylint in build/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merging with changes to pylib/linker/test_case.py. Created 6 years, 10 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 | « build/android/pylib/monkey/setup.py ('k') | build/android/pylib/perf/surface_stats_collector.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/perf/setup.py
diff --git a/build/android/pylib/perf/setup.py b/build/android/pylib/perf/setup.py
index cf844560f00c944a178ff4d0858e8afc436003ab..0d07c961c470369a5e964d3034ea5766e31fb79e 100644
--- a/build/android/pylib/perf/setup.py
+++ b/build/android/pylib/perf/setup.py
@@ -6,14 +6,19 @@
import json
import fnmatch
+import logging
import os
+import psutil
+import signal
import shutil
+import time
from pylib import constants
from pylib import forwarder
-from pylib.perf import test_runner
from pylib.utils import test_environment
+import test_runner
+
def Setup(test_options):
"""Create and return the test runner factory and tests.
@@ -59,7 +64,7 @@ def Setup(test_options):
with file(test_options.flaky_steps, 'r') as f:
flaky_steps = json.load(f)
- def TestRunnerFactory(device, _shard_index):
+ def TestRunnerFactory(device, shard_index):
return test_runner.TestRunner(
test_options, device, tests_dict, flaky_steps)
« no previous file with comments | « build/android/pylib/monkey/setup.py ('k') | build/android/pylib/perf/surface_stats_collector.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698