PyTest - Markers
What is the result of running this pytest code?
import pytest
@pytest.mark.skip(reason="Test disabled")
def test_skip():
assert False
print("Running tests")