PyTest - Parametrize
Given the code below, what will be the test result when run on Linux?
import sys
import pytest
@pytest.mark.parametrize('val', [pytest.param('a', marks=pytest.mark.skipif(sys.platform != 'linux', reason='Linux only')), 'b'])
def test_val(val):
assert val in ['a', 'b']
