From cef0dcf97166ce022f5756361a0ee71ed89ede32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Hajdan=2C=20Jr?= Date: Fri, 17 Feb 2017 22:30:26 +0100 Subject: [PATCH] Add DISABLE_STRICT_COVERAGE to modules which need it (round #2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some reason some of these issues were only detected on recipe autoroller bot. TBR=iannucci BUG=693058 Change-Id: I5d4a1243850a31d5430f2dc07be4a5138551ef82 Reviewed-on: https://chromium-review.googlesource.com/444884 Reviewed-by: Paweł Hajdan Jr. Commit-Queue: Paweł Hajdan Jr. --- recipe_modules/infra_paths/__init__.py | 3 +++ recipe_modules/tryserver/__init__.py | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/recipe_modules/infra_paths/__init__.py b/recipe_modules/infra_paths/__init__.py index 13bbc390f..1a4e20bb6 100644 --- a/recipe_modules/infra_paths/__init__.py +++ b/recipe_modules/infra_paths/__init__.py @@ -2,3 +2,6 @@ DEPS = [ 'recipe_engine/path', 'recipe_engine/properties', ] + +# TODO(phajdan): provide coverage (http://crbug.com/693058). +DISABLE_STRICT_COVERAGE = True diff --git a/recipe_modules/tryserver/__init__.py b/recipe_modules/tryserver/__init__.py index 76c8fb8c8..f979d74fc 100644 --- a/recipe_modules/tryserver/__init__.py +++ b/recipe_modules/tryserver/__init__.py @@ -14,3 +14,7 @@ DEPS = [ 'rietveld', 'recipe_engine/step', ] + + +# TODO(phajdan): provide coverage (http://crbug.com/693058). +DISABLE_STRICT_COVERAGE = True