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

Unified Diff: build/android/pylib/base/test_result.py

Issue 11943018: [Android] Uploaded instrumentation tests to prod flakiness dashboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/buildbot/bb_device_steps.py ('k') | build/android/pylib/constants.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/base/test_result.py
diff --git a/build/android/pylib/base/test_result.py b/build/android/pylib/base/test_result.py
index 0c78d221779fea4e3511af5b31543a62a1113fea..74285bf2a362eadd304e031e791f58e69024ed93 100644
--- a/build/android/pylib/base/test_result.py
+++ b/build/android/pylib/base/test_result.py
@@ -15,9 +15,6 @@ from pylib import constants
from pylib.utils import flakiness_dashboard_results_uploader
-_STAGING_SERVER = 'chrome-android-staging'
-
-
class BaseTestResult(object):
"""A single result from a unit test."""
@@ -179,15 +176,13 @@ class TestResults(object):
return
try:
- # TODO(frankf): Temp server for initial testing upstream.
- # Use http://test-results.appspot.com once we're confident this works.
- if _STAGING_SERVER in flakiness_server:
+ if flakiness_server == constants.UPSTREAM_FLAKINESS_SERVER:
assert test_package in ['ContentShellTest',
'ChromiumTestShellTest',
'AndroidWebViewTest']
dashboard_test_type = ('%s_instrumentation_tests' %
test_package.lower().rstrip('test'))
- # Downstream prod server.
+ # Downstream server.
else:
dashboard_test_type = 'Chromium_Android_Instrumentation'
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | build/android/pylib/constants.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698