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

Unified Diff: scripts/slave/recipe_modules/webrtc/api.py

Issue 687863002: WebRTC: Add flakiness dashboard reporting. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebased Created 6 years, 1 month 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 | « no previous file | scripts/slave/recipes/webrtc/chromium.expected/chromium_webrtc_Linux_Tester.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | scripts/slave/recipes/webrtc/chromium.expected/chromium_webrtc_Linux_Tester.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698