PyTest - Markers
Consider this pytest code snippet:
What will be the test result when running pytest?
@pytest.mark.xfail(strict=True)
def test_divide():
assert 1 / 0 == 0What will be the test result when running pytest?
