From b209dc0f43d5c312a7373dec6779c720ade8bd6e Mon Sep 17 00:00:00 2001 From: pefontana Date: Wed, 1 Apr 2026 17:30:27 -0300 Subject: [PATCH] test(e2e): add intentional failure to verify CI detection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporary commit — will be reverted after confirming CI catches it. --- tests/e2e/test_telegram_commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/test_telegram_commands.py b/tests/e2e/test_telegram_commands.py index c920e4465..b73aa877b 100644 --- a/tests/e2e/test_telegram_commands.py +++ b/tests/e2e/test_telegram_commands.py @@ -59,6 +59,8 @@ class TestTelegramSlashCommands: response_text = send.call_args[1].get("content") or send.call_args[0][1] assert "/new" in response_text assert "/status" in response_text + # Intentional breakage: this should fail in CI + assert "THIS_STRING_DOES_NOT_EXIST_IN_HELP" in response_text @pytest.mark.asyncio async def test_status_shows_session_info(self, adapter):