Skip a test with a reason using @pytest.mark.skip
Preconditions (2)
Step 1: Create a test function named test_example_skip
Step 2: Add the decorator @pytest.mark.skip with the reason 'Skipping this test for demonstration'
Step 3: Run pytest on the test file
✅ Expected Result: The test test_example_skip is skipped and the reason 'Skipping this test for demonstration' is shown in the test report