diff options
author | Kegan Dougal <kegan@matrix.org> | 2020-06-26 11:34:25 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2020-06-26 11:34:25 +0100 |
commit | 9592d53364b573f9cd6ae045b98c49779429fa5f (patch) | |
tree | 526b715f38e8d9279af25ca963d8973dad74f93e /are-we-synapse-yet.py | |
parent | 4897beabeed3281f3e45a1426e6f1c9359e3152b (diff) |
Fix div 0 error and add new tests to list
Diffstat (limited to 'are-we-synapse-yet.py')
-rwxr-xr-x | are-we-synapse-yet.py | 2 |
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(): |