PyTest - Markers
Given the code below, what will happen when running the test on a Windows system?
import sys
import pytest
@pytest.mark.skipif(sys.platform != 'win32', reason='Only runs on Windows')
def test_windows_feature():
assert True