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

Unified Diff: build/android/pylib/utils/flakiness_dashboard_results_uploader.py

Issue 132463007: Enable presubmit pylint in build/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase vs tot and only disabling F0401 in specific spots 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/utils/findbugs.py ('k') | build/android/pylib/utils/report_results.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/utils/flakiness_dashboard_results_uploader.py
diff --git a/build/android/pylib/utils/flakiness_dashboard_results_uploader.py b/build/android/pylib/utils/flakiness_dashboard_results_uploader.py
index e74145f79535354af7c0cdb67677cfdda8e4d789..c7adc5989600f4226bb031f3fdd4bcd888f620e3 100644
--- a/build/android/pylib/utils/flakiness_dashboard_results_uploader.py
+++ b/build/android/pylib/utils/flakiness_dashboard_results_uploader.py
@@ -3,11 +3,11 @@
# found in the LICENSE file.
"""Uploads the results to the flakiness dashboard server."""
+# pylint: disable=E1002,R0201
import logging
import os
import shutil
-import subprocess
import sys
import tempfile
import xml
@@ -26,8 +26,10 @@ sys.path.append(
os.pardir, os.pardir, os.pardir,
'Tools', 'Scripts')))
+# pylint: disable=F0401
from webkitpy.common.system import executive, filesystem
from webkitpy.layout_tests.layout_package import json_results_generator
+# pylint: enable=F0401
#TODO(craigdh): pylib/utils/ should not depend on pylib/.
from pylib import cmd_helper
@@ -125,7 +127,7 @@ class ResultsUploader(object):
# TODO(frankf): Use factory properties (see buildbot/bb_device_steps.py)
# This requires passing the actual master name (e.g. 'ChromiumFYI' not
# 'chromium.fyi').
- from slave import slave_utils
+ from slave import slave_utils # pylint: disable=F0401
self._build_name = slave_utils.SlaveBuildName(constants.DIR_SOURCE_ROOT)
self._master_name = slave_utils.GetActiveMaster()
else:
@@ -188,7 +190,7 @@ class ResultsUploader(object):
results_generator.generate_times_ms_file()
results_generator.upload_json_files(json_files)
except Exception as e:
- logging.error("Uploading results to test server failed: %s." % e);
+ logging.error("Uploading results to test server failed: %s." % e)
finally:
shutil.rmtree(tmp_folder)
« no previous file with comments | « build/android/pylib/utils/findbugs.py ('k') | build/android/pylib/utils/report_results.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698