From cc714b72f8d200b5cbdd38915e8d8892af5d058d Mon Sep 17 00:00:00 2001 From: Ganga4060 Date: Wed, 26 Nov 2025 06:50:04 +0000 Subject: [PATCH] feat: added failing test to verify the workflow --- packages/toolbox-core/tests/test_client.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/toolbox-core/tests/test_client.py b/packages/toolbox-core/tests/test_client.py index a7d4fa66..f6b058fd 100644 --- a/packages/toolbox-core/tests/test_client.py +++ b/packages/toolbox-core/tests/test_client.py @@ -691,3 +691,9 @@ async def test_add_headers_duplicate_fail(self, static_header): match=f"Client header\\(s\\) `X-Static-Header` already registered", ): client.add_headers(static_header) + + +@pytest.mark.asyncio +async def test_intentional_failure(): + """This test is intentionally designed to fail for testing cloud build logs exporting workflow.""" + assert False, "This is an intentional test failure"