diff --git a/scripts/release.py b/scripts/release.py index 0187024e8b..6d8aef59de 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -204,6 +204,8 @@ AUTHOR_MAP = { "don.rhm@gmail.com": "donrhmexe", "dorukardahan@hotmail.com": "dorukardahan", "dsocolobsky@gmail.com": "dsocolobsky", + "dylan.socolobsky@lambdaclass.com": "dsocolobsky", + "ignacio.avecilla@lambdaclass.com": "IAvecilla", "duerzy@gmail.com": "duerzy", "emozilla@nousresearch.com": "emozilla", "fancydirty@gmail.com": "fancydirty", diff --git a/tests/e2e/test_discord_adapter.py b/tests/e2e/test_discord_adapter.py index 97c806f82d..891d480682 100644 --- a/tests/e2e/test_discord_adapter.py +++ b/tests/e2e/test_discord_adapter.py @@ -57,10 +57,10 @@ class TestMentionStrippedCommandDispatch: mentions=[bot_user], ) await dispatch(discord_adapter, msg) - # Message is accepted (not dropped), but not dispatched as a command - discord_adapter.send.assert_awaited() + # Message is accepted (not dropped by mention gate), but since it doesn't + # start with / it's routed as text — no command output, and no agent in this + # mock setup means no send call either. response = get_response_text(discord_adapter) - # /help command output lists /new — if it went through as text, it won't assert response is None or "/new" not in response async def test_no_mention_in_channel_dropped(self, discord_adapter):