PyTest - Markers
What will be the output when running this pytest code?
import pytest
@pytest.mark.skip(reason="Feature not ready")
def test_feature():
assert 1 == 1
def test_other():
assert 2 == 2
