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

Unified Diff: scripts/slave/recipe_modules/chromium/test_api.py

Issue 1819613002: Flip remaining chromium_gn bots to the chromium recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: add new expectation files Created 4 years, 9 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
Index: scripts/slave/recipe_modules/chromium/test_api.py
diff --git a/scripts/slave/recipe_modules/chromium/test_api.py b/scripts/slave/recipe_modules/chromium/test_api.py
index 84ce0eff8a04cc5c9197714e02a5fd8f8ce219f0..cde8295c3153e0c6982cb017f635288629ac5551 100644
--- a/scripts/slave/recipe_modules/chromium/test_api.py
+++ b/scripts/slave/recipe_modules/chromium/test_api.py
@@ -36,8 +36,10 @@ class ChromiumTestApi(recipe_test_api.RecipeTestApi):
override_step_data = overrides.get(mastername, {}).get(buildername,
None)
- if override_step_data:
- test += override_step_data
+ if override_step_data: # pragma: nocover
+ # No tests currently use this, but it would be really
+ # confusing if 'override_step_data' wasn't supported.
+ test += override_step_data
yield test
# The following data was generated by running 'gyp_chromium

Powered by Google App Engine
This is Rietveld 408576698