diff options
author | kegsay <kegan@matrix.org> | 2021-07-14 10:48:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 10:48:34 +0100 |
commit | 2713d1935e30508277c626ba7a8f4937e23c1281 (patch) | |
tree | 995d9b4a3a15a0dc9fd97fd14491f847d039fe0a /are-we-synapse-yet.py | |
parent | e80098e18630df4ff148c16f741dd72f33e2b1c8 (diff) |
AWSY: update list and shuffle groups (#1919)
So it's more accurate.
Diffstat (limited to 'are-we-synapse-yet.py')
-rwxr-xr-x | are-we-synapse-yet.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/are-we-synapse-yet.py b/are-we-synapse-yet.py index 3d21fa41..92c7b82b 100755 --- a/are-we-synapse-yet.py +++ b/are-we-synapse-yet.py @@ -35,6 +35,7 @@ test_mappings = { "nsp": "Non-Spec API", "unk": "Unknown API (no group specified)", "app": "Application Services API", + "msc": "MSCs", "f": "Federation", # flag to mark test involves federation "federation_apis": { @@ -223,6 +224,7 @@ def main(results_tap_path, verbose): }, "nonspec": { "nsp": {}, + "msc": {}, "unk": {} }, } @@ -237,6 +239,8 @@ def main(results_tap_path, verbose): summary["nonspec"]["unk"][name] = test_result["ok"] if group_id == "nsp": summary["nonspec"]["nsp"][name] = test_result["ok"] + elif group_id == "msc": + summary["nonspec"]["msc"][name] = test_result["ok"] elif group_id == "app": summary["appservice"]["app"][name] = test_result["ok"] elif group_id in test_mappings["federation_apis"]: |