PyTest - Markers
Consider the following test code:
What will happen when this test runs on a Windows machine?
import sys
import pytest
@pytest.mark.skipif(sys.platform != 'darwin', reason='Only runs on macOS')
def test_mac_only():
assert TrueWhat will happen when this test runs on a Windows machine?
