test: add deliberate failure to verify CI pipeline
CI / test (push) Failing after 26s

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 20:31:41 +08:00
parent 60625433bf
commit d68c45a762
+5
View File
@@ -87,3 +87,8 @@ def test_sample_ir_json_is_valid():
assert isinstance(data, (dict, list)) assert isinstance(data, (dict, list))
else: else:
pytest.skip("Sample IR JSON not found") 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"