Index: build/android/buildbot/bb_run_bot.py |
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py |
index 2d9bc12bd5703c03345b8b091249dcf8b6600ac2..6718aef0bb36cc4ba9a51b868ac27c2e0a8afab8 100755 |
--- a/build/android/buildbot/bb_run_bot.py |
+++ b/build/android/buildbot/bb_run_bot.py |
@@ -15,6 +15,10 @@ import sys |
import bb_utils |
+sys.path.append(os.path.join(os.path.dirname(__file__), '..')) |
+from pylib import constants |
+ |
+ |
_BotConfig = collections.namedtuple( |
'BotConfig', ['bot_id', 'host_obj', 'test_obj']) |
@@ -111,7 +115,8 @@ def GetBotStepMap(): |
std_build_steps = ['compile', 'zip_build'] |
std_test_steps = ['extract_build'] |
std_tests = ['ui', 'unit'] |
- flakiness_server = '--upload-to-flakiness-server' |
+ flakiness_server = ( |
+ '--flakiness-server=%s' % constants.UPSTREAM_FLAKINESS_SERVER) |
experimental = ['--experimental'] |
B = BotConfig |