| 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 586287b8fade09534e8a1afb00b684c624472cff..d23738080d85112cb2eeae3b3baacb1fd9046ff3 100755
|
| --- a/build/android/buildbot/bb_run_bot.py
|
| +++ b/build/android/buildbot/bb_run_bot.py
|
| @@ -117,6 +117,7 @@ def GetBotStepMap():
|
| compile_step = ['compile']
|
| chrome_proxy_tests = ['chrome_proxy']
|
| chrome_sync_shell_tests = ['sync']
|
| + python_unittests = ['python_unittests']
|
| std_host_tests = ['check_webview_licenses', 'findbugs']
|
| emma_coverage_tests = [x for x in std_host_tests if x is not 'findbugs']
|
| std_build_steps = ['compile', 'zip_build']
|
| @@ -167,7 +168,7 @@ def GetBotStepMap():
|
| H(compile_step + std_host_tests, target_arch='ia32')),
|
| B('fyi-builder-rel', H(std_build_steps, experimental)),
|
| B('fyi-tests', H(std_test_steps),
|
| - T(std_tests + chrome_sync_shell_tests,
|
| + T(std_tests + chrome_sync_shell_tests + python_unittests,
|
| ['--experimental', flakiness_server,
|
| '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET,
|
| '--cleanup'])),
|
|
|