From baa6567a5e504361ed389ad84b263e86b21ba1ec Mon Sep 17 00:00:00 2001 From: Saurabh Singh <1623701+saurabh500@users.noreply.github.com> Date: Tue, 30 Jun 2026 17:47:09 -0700 Subject: [PATCH 1/2] test: add intentional failing test to verify PR pipeline failure detection Temporary dummy test to confirm the PR pipeline correctly catches and reports failing tests. To be removed after verification. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- tests/test_099_dummy_pipeline_check.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/test_099_dummy_pipeline_check.py diff --git a/tests/test_099_dummy_pipeline_check.py b/tests/test_099_dummy_pipeline_check.py new file mode 100644 index 00000000..cc373198 --- /dev/null +++ b/tests/test_099_dummy_pipeline_check.py @@ -0,0 +1,12 @@ +""" +Temporary dummy test used to verify that the PR pipeline correctly reports +failing tests. This test is intentionally designed to FAIL. + +TODO: Remove this file once the pipeline failure-detection behavior has been +confirmed. +""" + + +def test_dummy_intentional_failure(): + # Intentionally failing assertion to validate pipeline failure detection. + assert 1 == 2, "Intentional failure to verify the PR pipeline catches test failures" From ea239a39e9062e2f5585e814800c1d93fd4fedfe Mon Sep 17 00:00:00 2001 From: Saurabh Singh <1623701+saurabh500@users.noreply.github.com> Date: Tue, 30 Jun 2026 17:47:27 -0700 Subject: [PATCH 2/2] test: rename dummy test to run first for fail-fast verification Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- ..._dummy_pipeline_check.py => test_0000_dummy_pipeline_check.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{test_099_dummy_pipeline_check.py => test_0000_dummy_pipeline_check.py} (100%) diff --git a/tests/test_099_dummy_pipeline_check.py b/tests/test_0000_dummy_pipeline_check.py similarity index 100% rename from tests/test_099_dummy_pipeline_check.py rename to tests/test_0000_dummy_pipeline_check.py