From 6d887dc6ee72361142c60087bf7c8182914cf84d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 29 Nov 2017 22:20:06 -0800 Subject: [PATCH] test-backend: Require 100% test coverage on confirmation code. --- tools/test-backend | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/test-backend b/tools/test-backend index 53f1d32327..6c021375e5 100755 --- a/tools/test-backend +++ b/tools/test-backend @@ -32,7 +32,7 @@ target_fully_covered = {path for target in [ # As a project, we require 100% test coverage in the views files. 'zerver/views/*.py', 'zproject/backends.py', - 'confirmation/models.py', + 'confirmation/*.py', 'zerver/webhooks/*/*.py', # Once we have a nice negative tests system, we can add these: # 'zerver/webhooks/*/*.py', @@ -47,7 +47,6 @@ not_yet_fully_covered = { # We have 100% coverage on the new stuff; need to refactor old stuff. 'analytics/views.py', # Major lib files should have 100% coverage - 'confirmation/models.py', 'zerver/decorator.py', 'zerver/lib/actions.py', 'zerver/lib/addressee.py',