PyTest - Markers
Analyze this pytest test:
What will pytest report when this test runs?
@pytest.mark.xfail(strict=True)
def test_membership():
assert 'x' in ['a', 'b', 'c']What will pytest report when this test runs?
