diff --git a/packages/toolbox-core/tests/test_client.py b/packages/toolbox-core/tests/test_client.py index a7d4fa660..f6b058fdf 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"