PyTest - Markers
Given this pytest code:
import pytest
@pytest.mark.skip(reason="Deprecated test")
def test_old():
assert False
@pytest.mark.skip(reason="Waiting for fix")
def test_new():
assert True
What will pytest report after running?