Add multi-username activity support
ci / test (push) Successful in 10s
ci / push-image (push) Successful in 52s
ci / deploy-coolify (push) Successful in 6s

This commit is contained in:
Space-Banane
2026-06-04 22:42:48 +02:00
parent ad792b8137
commit 4444174365
5 changed files with 142 additions and 44 deletions
+9
View File
@@ -0,0 +1,9 @@
from app.settings import split_usernames
def test_split_usernames_trims_and_deduplicates() -> None:
assert split_usernames("octocat, hubot, octocat, , gitea-user") == [
"octocat",
"hubot",
"gitea-user",
]