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

Unified Diff: recipe_engine/loader.py

Issue 2721613004: simulation_test_ng: initial CL (Closed)
Patch Set: revised Created 3 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
« no previous file with comments | « no previous file | recipe_engine/post_process.py » ('j') | recipe_engine/test.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/loader.py
diff --git a/recipe_engine/loader.py b/recipe_engine/loader.py
index 8f26265d4b94af2897448db6f2149525a73803f6..5a4d0184d60472a4968ed9af2894f17ee41ce039 100644
--- a/recipe_engine/loader.py
+++ b/recipe_engine/loader.py
@@ -397,6 +397,10 @@ def _patchup_module(name, submod, universe_view):
submod.PACKAGE_REPO_ROOT = Path(PackageRepoBasePath(universe_view.package))
submod.CONFIG_CTX = getattr(submod, 'CONFIG_CTX', None)
+ # TODO(phajdan.jr): remove DISABLE_STRICT_COVERAGE (crbug/693058).
+ submod.DISABLE_STRICT_COVERAGE = getattr(
+ submod, 'DISABLE_STRICT_COVERAGE', False)
+
if hasattr(submod, 'config'):
for v in submod.config.__dict__.itervalues():
if isinstance(v, ConfigContext):
« no previous file with comments | « no previous file | recipe_engine/post_process.py » ('j') | recipe_engine/test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698