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

Unified Diff: build/android/pylib/results/report_results.py

Issue 757683002: [Android] Implement generic JSON results that match base/test/launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit issue Created 6 years 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
Index: build/android/pylib/results/report_results.py
diff --git a/build/android/pylib/utils/report_results.py b/build/android/pylib/results/report_results.py
similarity index 97%
rename from build/android/pylib/utils/report_results.py
rename to build/android/pylib/results/report_results.py
index 8f81c957d0ee39d687970e80fbefa08cd76e39ed..4c9518e5adcdc61bd79758cc394e21ce76c4d6d2 100644
--- a/build/android/pylib/utils/report_results.py
+++ b/build/android/pylib/results/report_results.py
@@ -9,7 +9,7 @@ import os
import re
from pylib import constants
-from pylib.utils import flakiness_dashboard_results_uploader
+from pylib.results.flakiness_dashboard import results_uploader
def _LogToFile(results, test_type, suite_name):
@@ -58,7 +58,7 @@ def _LogToFlakinessDashboard(results, test_type, test_package,
logging.warning('Invalid test type')
return
- flakiness_dashboard_results_uploader.Upload(
+ results_uploader.Upload(
results, flakiness_server, dashboard_test_type)
except Exception as e:
« no previous file with comments | « build/android/pylib/results/json_results_test.py ('k') | build/android/pylib/utils/flakiness_dashboard_results_uploader.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698