import pytest
xfail = pytest.mark.xfail
@xfail
def test_hello():
assert 0
@xfail(run=False)
def test_hello2():
@xfail("hasattr(os, 'sep')")
def test_hello3():
@xfail(reason="bug 110")
def test_hello4():
def test_hello5():
pytest.xfail("reason")