aboutsummaryrefslogtreecommitdiff
path: root/are-we-synapse-yet.py
diff options
context:
space:
mode:
authorkegsay <kegan@matrix.org>2021-07-14 10:48:34 +0100
committerGitHub <noreply@github.com>2021-07-14 10:48:34 +0100
commit2713d1935e30508277c626ba7a8f4937e23c1281 (patch)
tree995d9b4a3a15a0dc9fd97fd14491f847d039fe0a /are-we-synapse-yet.py
parente80098e18630df4ff148c16f741dd72f33e2b1c8 (diff)
AWSY: update list and shuffle groups (#1919)
So it's more accurate.
Diffstat (limited to 'are-we-synapse-yet.py')
-rwxr-xr-xare-we-synapse-yet.py4
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"]: