From 3e6b90a4332369b00e6d538335505b244f572373 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 17 Jun 2021 15:23:41 -0700 Subject: [PATCH] analytics: Explode coverage checks for analytics/views. --- tools/test-backend | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/test-backend b/tools/test-backend index 4a281922e5..643d27033c 100755 --- a/tools/test-backend +++ b/tools/test-backend @@ -26,7 +26,7 @@ target_fully_covered = [ "analytics/lib/*.py", "analytics/models.py", "analytics/tests/*.py", - "analytics/views.py", + "analytics/views/*.py", # zerver/ and zerver/lib/ are important core files "zerver/*.py", "zerver/lib/*.py", @@ -59,7 +59,11 @@ not_yet_fully_covered = [ # runs before tests. "analytics/lib/fixtures.py", # We have 100% coverage on the new stuff; need to refactor old stuff. - "analytics/views.py", + "analytics/views/activity_common.py", + "analytics/views/realm_activity.py", + "analytics/views/installation_activity.py", + "analytics/views/stats.py", + "analytics/views/support.py", # Major lib files should have 100% coverage "zerver/lib/addressee.py", "zerver/lib/markdown/__init__.py",