Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tests/test_0000_dummy_pipeline_check.py
Original file line number Diff line number Diff line change
@@ -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

Check notice

Code scanning / devskim

A "TODO" or similar was left in source code, possibly indicating incomplete functionality Note test

Suspicious comment
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"
Comment on lines +9 to +12
Loading