Index: scripts/slave/recipe_modules/webrtc/api.py |
diff --git a/scripts/slave/recipe_modules/webrtc/api.py b/scripts/slave/recipe_modules/webrtc/api.py |
index 04ff552f76988111a49d01548c6cc505e29b635b..5f59eba2c384ca3cec559c3bf995acdcfbd26132 100644 |
--- a/scripts/slave/recipe_modules/webrtc/api.py |
+++ b/scripts/slave/recipe_modules/webrtc/api.py |
@@ -214,6 +214,7 @@ class WebRTCApi(recipe_api.RecipeApi): |
annotate = 'gtest' |
python_mode = False |
test_type = test |
+ flakiness_dash = not self.m.tryserver.is_tryserver |
if parallel: |
test_executable = self.m.chromium.c.build_dir.join( |
self.m.chromium.c.build_config_fs, test) |
@@ -222,10 +223,12 @@ class WebRTCApi(recipe_api.RecipeApi): |
'gtest-parallel') |
python_mode = True |
annotate = None # The parallel script doesn't output gtest format. |
+ flakiness_dash = False |
self.m.chromium.runtest( |
test=test, args=args, name=name, annotate=annotate, xvfb=True, |
- python_mode=python_mode, test_type=test_type, env=env) |
+ flakiness_dash=flakiness_dash, python_mode=python_mode, |
+ test_type=test_type, env=env) |
def test_runner(self, test, isolate_path): |
"""Adds a test to run on Android devices. |