aboutsummaryrefslogtreecommitdiff
path: root/are-we-synapse-yet.py
diff options
context:
space:
mode:
Diffstat (limited to 'are-we-synapse-yet.py')
-rwxr-xr-xare-we-synapse-yet.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/are-we-synapse-yet.py b/are-we-synapse-yet.py
index 30979a12..8cd7ec9f 100755
--- a/are-we-synapse-yet.py
+++ b/are-we-synapse-yet.py
@@ -159,6 +159,8 @@ def print_stats(header_name, gid_to_tests, gid_to_name, verbose):
total_tests = 0
for gid, tests in gid_to_tests.items():
group_total = len(tests)
+ if group_total == 0:
+ continue
group_passing = 0
test_names_and_marks = []
for name, passing in tests.items():