From d68c45a7621cbb3adc3f7c1ad2044f5aeb4e3ee6 Mon Sep 17 00:00:00 2001 From: Peter Zhang <18501667167@qq.com> Date: Fri, 29 May 2026 20:31:41 +0800 Subject: [PATCH] test: add deliberate failure to verify CI pipeline Co-Authored-By: Claude Opus 4.7 --- tests/test_sample.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_sample.py b/tests/test_sample.py index 785528d..0682a27 100644 --- a/tests/test_sample.py +++ b/tests/test_sample.py @@ -87,3 +87,8 @@ def test_sample_ir_json_is_valid(): assert isinstance(data, (dict, list)) else: pytest.skip("Sample IR JSON not found") + + +def test_deliberate_failure(): + """This test is designed to fail - for CI failure verification.""" + assert 1 == 2, "Deliberate failure to test CI pipeline"