From 9592d53364b573f9cd6ae045b98c49779429fa5f Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Fri, 26 Jun 2020 11:34:25 +0100 Subject: [PATCH] Fix div 0 error and add new tests to list --- are-we-synapse-yet.list | 6 +++++- are-we-synapse-yet.py | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/are-we-synapse-yet.list b/are-we-synapse-yet.list index f59f8067..3876de54 100644 --- a/are-we-synapse-yet.list +++ b/are-we-synapse-yet.list @@ -853,4 +853,8 @@ fme Outbound federation will ignore a missing event with bad JSON for room versi fbk Outbound federation rejects backfill containing invalid JSON for events in room version 6 jso Invalid JSON integers jso Invalid JSON floats -jso Invalid JSON special values \ No newline at end of file +jso Invalid JSON special values +inv Can invite users to invite-only rooms (2 subtests) +plv setting 'm.room.name' respects room powerlevel (2 subtests) +psh Messages that notify from another user increment notification_count +psh Messages that org.matrix.msc2625.mark_unread from another user increment org.matrix.msc2625.unread_count \ No newline at end of file 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():